gpt4 book ai didi

javascript - Jquery:点击时使用SetInterval

转载 作者:太空宇宙 更新时间:2023-11-04 13:46:54 25 4
gpt4 key购买 nike

我有一个简单的 javascript jquery 代码:

http://jsfiddle.net/reX2N/

我以为它会起作用,但它不是!我没有收到任何错误或任何信息,有人知道为什么吗?

var colors = ['red','green','blue'];

$('button').on('click',function(){
var index = $(this).parent().index();
setInterval(function(){
$(this).parent().css('background',colors[index]);
index < 3 ? index++ : index = 0;
}, 1000);
});

html代码

   <div class="titleBox">
<button>Click meh!</button>
</div>
<div class="titleBox">
<button>Click meh!</button>
</div>
<div class="titleBox">
<button>Click meh!</button>
</div>

.titleBox {
width:200px;
height:200px;
float:left;
border:1px solid;
opacity:.5
}
.titleBox[style^="background"] {
opacity:1;
}

最佳答案

setTimeout() 之外赋值$(this),然后通过引用将变量传递给超时函数:

Example Here

$('button').on('click',function(){
var self = $(this);
var index = $(this).parent().index();
setInterval(function(){
self.parent().css('background',colors[index]);
index < 3 ? index++ : index = 0;
}, 1000);
});

关于javascript - Jquery:点击时使用SetInterval,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23526790/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com