私は自分のウェブサイトで 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 に戻すと、すべて正常に動作します。