我有以下代码:
<html>
<head>
<title>D</title>
<script type="text/javascript" src="jQuery.js">
<script type="text/javascript">
$(window).unload( function () { alert("Bye now!"); } );
</script>
</head>
<body>
<span>Hello world</span>
</body>
</html>
但这并没有显示任何内容。
[编辑] 有两件事:
答案 0 :(得分:4)
jQuery的.unload()
事件在Google Chrome 14及更高版本中无效。这是n ew reported bug.(13天)
这可能只是Google方面的一项安全措施
答案 1 :(得分:0)
使用
<script>window.onbeforeunload = function(){ return 'Your Returned String Goes Here';}/script>