sample.htmlbeforeunload Safari瀏覽器IFRAME問題
<html>
<head>
<script type="text/javascript">
window.onbeforeunload = function (e) {
e = e || window.event;
// For IE and Firefox prior to version 4
if (e) {
e.returnValue = 'Any string';
}
// For Safari
return 'Any string';
};
</script>
</head>
<body>
<h1> <a href="http://www.yahoo.com"> Yahoo</a> </h1>
</body>
</html>
main.html中
<html>
<body>
<iframe src="sample.html" width="100%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>
所以問題是,當我在雅虎的鏈接onbeforeunload功能點擊是沒有得到調用。
我已經提供了代碼和更多信息供您參考。請看看.. – Abhimanyu