0
我創建了一個小型網頁,我想在導航過程中使用jQuery爲內容製作動畫。它在Internet Explorer中完美運行。如果我使用Firefox,則無法正常工作。jQuery中的瀏覽器兼容性
我的代碼如下
$("#maincontent").animate({"top":"450px"},800, function(){
$("#maincontent").html($("#"+Lidentity).html())
.animate({"top":"-10px"},600)
.animate({"top":"10px"},100)
.animate({"top":"-5px"},100)
.animate({"top":"5px"},100)
.animate({"top":"0px"},100);
});
我已經設置爲絕對的#maincontent
元素位置。
firefox中實際發生了什麼?沒有?你在Firefox中安裝了Firebug嗎?它會幫助你追蹤錯誤。 – 2009-07-02 07:07:51