Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>点击网页任意地方弹出窗口</title>
<script language="javascript">
document.onclick=function(){
window.open('/');
}
</script>
</head>
<body>
鼠标左键点击网页任意地方试试!
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx