我正在使用此脚本根据类过滤元素。目前它停止前一个函数并淡入新类,我需要它停止,淡出一切(它可以是特定类,例如.all)然后淡出现在。我无法将淡出添加到脚本中。谢谢你的帮助。
继承剧本:
<script>
$('div.tags').delegate('input[type=radio]', 'change', update);
update();
function update() {
var $lis = $('.results > div'),
$checked = $('input:checked');
if ($checked.length) {
var selector = $checked.map(function () {
return '.' + $(this).attr('rel');
}).get().join('');
$lis.hide().filter(selector).stop().fadeIn(1000, 'easeInCirc');
} else {
$lis.stop().fadeIn(1000, 'easeInCirc');
}
}
</script>