我曾嘗試使用setAttribute()
方法的jQuery如下所述:爲什麼我們不能在jQuery中使用setAtrribute函數?
$(p).setAttribute('class','first');
然而,沒有工作,所以我代替setAttribute
與attr()
方法。
$(p).attr('class','first');
它在我使用上述代碼時起作用。
我只想知道爲什麼當我使用setAttribute()
時它不起作用,爲什麼當我使用attr()
時它工作?
'p.setAttribute('class','first');' –