首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

解决离开页眼前onbeforeunload事件在火狐的兼容并且提交不触发

2012-06-26 
解决离开页面前onbeforeunload事件在火狐的兼容并且提交不触发离开页面前onbeforeunload事件在火狐的兼容

解决离开页面前onbeforeunload事件在火狐的兼容并且提交不触发
离开页面前onbeforeunload事件在火狐的兼容并且提交不触发

<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>

热点排行