Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>屏蔽最小化、最大化、及关闭功能的JS</title>
</head>
<body onbeforeunload="javascript:return false">
<script language="javascript">
function window.onbeforeunload()
{
if(event.clientX>document.body.clientWidth&&event.clientY<0||event.altKey)
window.event.returnvalue = "";
}
</script>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx