$(document).ready(function(){
setTimeout(function() {
window.location.href = $(".user a")[0].href;
}, 2000);
});
我把上面的jQuery代碼在一個js file.which在一些頁面的站點的標題template.but調用(沒有.user a
)顯示IE狀態欄上的錯誤「0.href is null or not an object
。如何防止錯誤顯示。如何在jQuery中嘗試錯誤?
你也應該代替使用.attr( 「HREF」)剛剛.href。 – niaher
@niaher - 不能這樣做,除非你使用'eq(0)'來獲得一個jQuery對象。訪問數組讓你成爲一個HTMLElement – Jamiec
直接使用'.href'也比使用jQuery調用更快... –