2012-05-12 79 views
0

我知道使用replaceWith來填充HTML標籤

$('p.heading').replaceWith('Welcome'); 

將與文本「歡迎」

如何只需更換內容替換整個<p>標籤,所以我最終<p class="heading">Welcome</p>

也許replaceWith是錯誤的功能?

回答

1
$('p.heading').html('Welcome'); 

.html()功能替換匹配元素的內HTML與它的參數(或返回匹配元件的內HTML,如果它被不帶一個參數)。