0
$('p.heading').replaceWith('Welcome');
將與文本「歡迎」
如何只需更換內容替換整個<p>
標籤,所以我最終<p class="heading">Welcome</p>
?
也許replaceWith是錯誤的功能?
$('p.heading').replaceWith('Welcome');
將與文本「歡迎」
如何只需更換內容替換整個<p>
標籤,所以我最終<p class="heading">Welcome</p>
?
也許replaceWith是錯誤的功能?
$('p.heading').html('Welcome');
的.html()
功能替換匹配元素的內HTML與它的參數(或返回匹配元件的內HTML,如果它被不帶一個參數)。