我有以下内容:
enquire.register(value, {
match: function () {
$('nav.menu a[href="#"]').click(function () {
$(this).next('ul').toggle();
})
},
unmatch: function () {
}
});
在 unmatch 中,如何取消我在 match 中设置的点击事件?
我有以下内容:
enquire.register(value, {
match: function () {
$('nav.menu a[href="#"]').click(function () {
$(this).next('ul').toggle();
})
},
unmatch: function () {
}
});
在 unmatch 中,如何取消我在 match 中设置的点击事件?