var init = function(){
var clear
if(!confirm("此网站安全性未知!要继续访问吗?")){
alert('cancle')
clear = function(){
document.body.innerHTML='禁止显示!'
alert("方法清内容")
}
window.opener=null
window.open('','_self')
//window.close()
}else{
alert('ok')
clear = function(){alert("方法清内容ok的时候")}
}
clear()
}
</script>
希望对你有用。
<html><head>
<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312" />
<script>
function myblur () {
alert("1、离开")
}
function bindEvent(func){
myblur = func
}
function myonclick() {
bindEvent(function(){
alert("天啊!myblur方法被覆盖了!")
})
}
</script>
</head>
<body>
<input type="text" onblur="myblur()" value="光标选中然后光标离开会调用myblur()方法"/>
<input type="button" onclick="myonclick()" value="覆盖myblur()" />
注:覆盖myblur()后,再次光标选中输入框然后再离开
</body>
</html>
<body onload="getNewPage()">函数getNewPage(){
window.location.href = "xxxxx"
}