请问谁知道该怎样屏蔽网页上的 关闭按钮么?-->小笨笨转移
想实现禁止在网页右上角关闭按钮~ 请问谁知道的? 帮忙一下~
千万别发类似 下面这样的代码` 因为我已经试过了` 不行~
{
<script language=javascript>
function window.onbeforeunload()
{
if(event.clientX>document.body.clientWidth&&event.clientY<0||event.altKey)
{
window.event.returnvalue = "false";
}
}
</script>
在body标签里加上onbeforeunload="javascript :return false"(使不能关闭窗口)
}