Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>每隔2秒弹出对话框</title>
</head>
<body>
不要以为这是个空网页,一会就有东西弹出来~
<script language="javascript" type="text/javascript">
function time(){
alert("我3秒出来一次.");
}setInterval("time()",5000);
</script>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx