Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>JavaScript禁止弹出警告框</title>
<script LANGUAGE="JavaScript">
<!--
window.alert = function(str) {
return ;
}
alert("我不能弹出警示框了!");//-->
</script>
</head>
<body>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx