离开网页onbeforeunload事件在火狐的兼容并且提交不触发

[code="java"]




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

var thisPage=false;

window.onbeforeunload=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="提交" onclick="sumbit();"/>
  </form>



</body>
</html>




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

 

你可能感兴趣的:(JavaScript,html,.net,firefox)