我试过这个:
$('.aaa').mouseenter(function () {
$(this).css('background', '#aaaaaa');
$(this).css('border', 'solid 1px red');
});
$('.aaa').mouseleave(function () {
$(this).css('background','blue');
});
$('#tog').click(function () {
$('.aaa').off('mouseenter mouseleave').on('mouseenter mouseleave');
});
它不起作用 - 只是关闭事件/功能。
此外,如何只切换功能的一部分 - 例如只是$(this).css('background', '#aaaaaa');
- 而不是切换整个功能?