私はこれを試しました:
$('.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');
また、機能全体を切り替えるのではなく、機能の一部だけを切り替えるにはどうすればよいでしょうか?