这是我的代码:
$('#retouche_a_faire').click(function() {
$("#retouche_a_faire_alert").toggle(this.checked);
});
它工作得很好。基本上,它是一个div
在“retouche_a_faire”复选框被选中时出现的功能,当它不是时消失。但我想使用该fadeToggle
选项而不是toggle
. 我怎样才能使这项工作?
我试过 :
$('#retouche_a_faire').click(function() {
$("#retouche_a_faire_alert").fadeToggle(this.checked);
});
但它不起作用,因为我需要设置持续时间和缓动我认为......但我也需要在括号中使用“this.checked”......我有点困惑。
谢谢!