0
所以我有點卡在我正在工作的東西;重新綁定一個點擊事件/在兩個元素之間切換,簡單的jquery測驗
我是全新的進Jquery的和Javascript世界,我敢肯定有一個更有效的方式來做到這一點,但現在,這是我有。
基本上,當用戶點擊一個「答案」的元素將動畫的頁面上。 有2個匹配元素的答案,如果點擊相應的'答案',將會生成動畫。
現在,當用戶點擊一個答案多次,它繼續動畫; 我需要當用戶點擊一個答案,它只動畫一次,並停止,所以用戶要麼離開它,要麼當他們點擊另一個'答案'時,它執行動畫,但被重新綁定到重新點擊。有點像在2個答案/相應的動畫之間來回切換。
我無法重新綁定,使您能再次點擊。在循環中排序。
希望林解釋這個ok了! 非常感謝任何能夠指引我走向正確方向的人。
這裏是JS,具有低於Im的其中FIDDLE在。
/*answer1*/
$('ul#quiz li:nth-child(2)').on("click", function() {
$(this).addClass('active');
$(this).siblings().addClass('deactive');
$(this).siblings().removeClass('active');
$(this).removeClass('deactive');
if ($('ul#quiz li:nth-child(3)').hasClass('deactive')) {
$('.circle2').animate({
width: "80px",
height: "80px"
});
}
if ($(this).hasClass('active')) {
$('.circle1').animate({
width: "+=3.5%",
height: "+=3.5%"
});
}
});
/*answer2*/
$('ul#quiz li:nth-child(3)').on("click", function() {
$(this).addClass('active');
$(this).siblings().addClass('deactive');
$(this).siblings().removeClass('active');
$(this).removeClass('deactive');
if ($('ul#quiz li:nth-child(2)').hasClass('deactive')) {
$('.circle1').animate({
width: "80px",
height: "80px"
});
}
if ($(this).hasClass('active')) {
$('.circle2').animate({
width: "+=3.5%",
height: "+=3.5%"
});
}
});
yup!非常感謝你。這有效...很快就會嘗試額外的信用部分。 – gregdevs
成功執行額外的信用額度。謝謝! – gregdevs
太棒了。您將很快成爲JS/JQ專家。 – GreatBigBore