我试图解除绑定:
var foo = $(".js_slide").bind('click' , function () {
var $contentBlock = $(this).next("li[id^=content_]");
if ($contentBlock.hasClass("is_open")) {
$contentBlock.animate({
width: '0%'
}).removeClass("is_open");
}
else {
// if a content box is open (=> an element with the class .is_open exists), close it
$(".js_content.is_open").animate({
width: '0%'
}).removeClass("is_open");
$contentBlock.animate({
width: '45%'
}, 500).addClass("is_open");
}
});
使用以下代码,但出现问题,我无法弄清楚它可能是什么
$('.js_slide').unbind('click', foo);