我有一个使用窗口 onbeforeunload 功能的网站,但点击弹出窗口因此而无法正常工作。我如何集成代码
window.onbeforeunload="null";
在下面的弹出代码中
<script type='text/javascript'>
function ouvre(fichier) {
ff=window.open(fichier,"popup","width=600px,height=300px,left=50%,top=50%") //this._try = 1; setTimeout('this._try = 1;', 4000); } function playMovie(_try) { if (this._try == 1) { playlavideo(); } else { alert('You must share the video to play.'); } }
</script>
<a href="#" onClick="ouvre('http://www.facebook.com/sharer.php?u=http://google.com/');return false"><img src="http://i.imgur.com/GnqwI.jpg" width="500" height="145" border="0"></a>