日期:2014-05-16 浏览次数:20301 次
<script>
function addEvent(ifr) {
ifr.contentWindow.onbeforeunload = function (e) {
return (e
------解决方案--------------------
window.event).returnValue = '确认要离开页面?!!';
}
}
</script>
<iframe src="2.html" onload="addEvent(this)" name="ifr"></iframe>
<a href="x.html" target="ifr">x.html</a>