求JavaScript整人代码18
发布网友
发布时间:2023-11-15 05:53
我来回答
共5个回答
热心网友
时间:2024-11-26 00:34
<!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" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
<script type="text/javascript">
function myadd(obj,e,fn){
if(obj.attachEvent){
obj.attachEvent("on"+e, fn);
}else{
obj.addEventListener(e,fn,false);
}
}
myadd(window, 'load',function(){
var box1 = document.getElementById("box1");
var close = document.getElementById("close");
var nr = document.getElementById("nr");
var i = 0;
var shuzu = [
'哈哈你被整了!1',
'哈哈你被整了!2',
'哈哈你被整了!3',
'哈哈你被整了!4',
'哈哈你被整了!5',
'哈哈你被整了!6',
'哈哈你被整了!7',
'哈哈你被整了!8',
'哈哈你被整了!9',
'哈哈你被整了!0','哈哈你被整了!1',
'哈哈你被整了!2'
]
close.onclick = function(){
i++;
if(i == 12){
i = 0;
}
nr.innerHTML = shuzu[i]
box1.style.display = 'none'
window.setTimeout(function(){
box1.style.display = 'block'
},400)
}
})
</script>
</head>
<style type="text/css">
.box1{
background:#ccc;
width:200px;
margin:200px auto;
}
.bgs{
position:fixed;
top: 0px;
left: 0px;
background:rgba(0,0,0,0.4);
width:100%;
height: 100%;
}
.box1 .close{
font-size: 18px;
line-height:40px;
background:red;
color:white;
cursor: pointer;
}
</style>
<body>
<div class="bgs" id = 'box1'>
<div class="box1" >
<div class="close" id = 'close' style = 'text-align:ceter;'>点我关闭吧 x</div>
<div class="nr" id= 'nr'>哈哈你被整了!</div>
</div>
</div>
</body>
</html>
热心网友
时间:2024-11-26 00:34
学会一个alert就行了,编一大段话,一直提问。
不过智能点的浏览器都可以不再显示弹窗。
浏览器毕竟是宿主环境,控制能力太强的也做不到。
热心网友
时间:2024-11-26 00:35
建议写个死循环,cpu占用率会疯狂涨到100%,如果是笔记本访问的话会发出滴滴的警报声。
热心网友
时间:2024-11-26 00:35
女孩让我想办法
热心网友
时间:2024-11-26 00:36
这个网上都有很多的, 去找找就知道了。