離開網頁onbeforeunload事件在火狐的兼容並且提交不觸發

[code="java"]




<html>
<head>
<script language="javascript">

var thisPage=false;

window.οnbefοreunlοad=function checkLeave(e){
var evt = e ? e : (window.event ? window.event : null);        //此方法爲了在firefox中的兼容

    if(!thisPage)evt.returnValue='離開會使編寫的內容丟失。';
  }



function sumbit(){

thisPage=true;

document.getElementById('YourFormId').submit();

}

</script>

</head>



<body>
<p><a href='http://www.baidu.com'>baidu.com</a></p>

<form id='YourFormId' action='http://www.baidu.com'>
      <input type="button" name="button" id="button" value="提交" οnclick="sumbit();"/>
  </form>



</body>
</html>




附件裏有html可以看下效果
http://topic.csdn.net/t/20060823/13/4969625.html

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章