Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下代码在 IE7 或 IE8 中不起作用……有人知道为什么吗?谢谢!
$('.change_settings_btn').live('click', function(){ var link = $(this); link.next('.change_settings_box').toggle(0, function(){ link.toggleClass('change_on'); }); });
为什么不这样做:
$('.change_settings_btn').live('click', function(){ var link = $(this); link.next('.change_settings_box').toggleClass('change_on'); });
虽然我不能肯定地说,因为我不知道你的 HTML 是什么样子或者你到底想要做什么。