我已经使用这个脚本很长时间了,而且我几乎不擅长 jQuery,所以当我看到它从 jQuery 的 v.1.9x 中删除时,我找不到对我有意义的修复(除了添加 migrate 插件修复它但添加了很多脚本)。任何帮助将不胜感激,因此我可以学习如何复制这种行为。谢谢!
$(document).ready(function () {
$("#switcher-wrapper .toggle").toggle(function () {
$("#switcher-wrapper").animate({
left: "-1px"
});
$(this).addClass("selected");
return false;
}, function () {
$("#switcher-wrapper").animate({
left: "-242px"
});
$(this).removeClass("selected");
return false;
});
});
这在 1.8.3 中有效,但在 1.9 jQuery 中却很奇怪。