jQuery(document).ready(function($) {
document.getElementById('hp-testimonials').fadeOut(500);
}
這給了我這個錯誤:「不確定是不是一個函數」 調用淡出時錯誤()
Uncaught TypeError: undefined is not a function
爲什麼? A <div>
與「hp-testimonials」的id
存在於頁面上。我不明白爲什麼它不會褪去這個<div>
了。
你爲什麼不使用'$( '#HP-證明書')'? –
'document.getElementById'返回一個HTML節點,而不是一個jQuery對象。 'fadeOut'只存在於一個jQuery對象上。 –