-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 926 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<script>
Function.prototype.functionLimitByTime = function(time){
var lock = false,fn = this;
return function(){
if(!lock){
lock = true;
setTimeout(function(){
lock = false;
},time);
return fn.apply(this,arguments);
}
}
}
function interval(period){
var a = "Hello!!!" + period;
console.log(a,period);
}
function nikita(){
var i = 0;
setInterval(function(){
i++;
interval(i);
},500);
}
</script>
</head>
<body>
</body>
</html>