Home > Web Front-end > HTML Tutorial > js绑定事件_html/css_WEB-ITnose

js绑定事件_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 09:04:09
Original
919 people have browsed it

$(".eggList li").one("click",function() {
$(this).children("span").hide();
$(this).addClass("curr");
$(".a").addClass("ab");
setTimeout(function(){
$(".eggList li").siblings().addClass("curr");
$(".b").addClass("ab");
},1000);
});

有两张图片,点击其中一张后另一张不能点击


回复讨论(解决方案)

现在写出来是两张都能点

$(".eggList li").on("click",function() {
$(".eggList li").off("click");
$(this).children("span").hide();
$(this).addClass("curr");
$(".a").addClass("ab");
setTimeout(function(){
$(".eggList li").siblings().addClass("curr");
$(".b").addClass("ab");
},1000);
});

$(".eggList li").on("click",function() {
$(".eggList li").off("click");
$(this).children("span").hide();
$(this).addClass("curr");
$(".a").addClass("ab");
setTimeout(function(){
$(".eggList li").siblings().addClass("curr");
$(".b").addClass("ab");
},1000);
});


能解释下什么意思吗?第一行on改成one也能用,为什么

$(".eggList li").off("click");是解除所有li上的事件。one只是解除点击对象自身的事件
你都解除所有的了,再解不解除自身的都一样

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template