我在我的网站上使用 jquery 1.3。今天我将它更新到最新的 1.9 并且我的切换/动画脚本停止工作。
代码如下所示:
<a href="javascript: void(0);" id="toggler">Show more</a>
<div id="tcontent"> … </div>
$(document).ready(function() {
$('#toggler').toggle(
function() {
$('#tcontent').animate({height: "70"}, 800);
},
function() {
$('#tcontent').animate({height: "6"}, 800);
});
});
这段代码有什么问题?当我将 jquery 1.3 包含回我的 html 时,一切正常。