W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
將所有匹配的元素替換成指定的HTML或DOM元素。
用于將匹配元素替換掉的內(nèi)容。如果這里傳遞一個函數(shù)進來的話,函數(shù)返回值必須是HTML字符串。
返回THML字符串,用來替換的內(nèi)容。
把所有的段落標(biāo)記替換成加粗的標(biāo)記。
<p>Hello</p><p>cruel</p><p>World</p>
$("p").replaceWith("<b>Paragraph. </b>");
<b>Paragraph. </b><b>Paragraph. </b><b>Paragraph. </b>
用第一段替換第三段,你可以發(fā)現(xiàn)他是移動到目標(biāo)位置來替換,而不是復(fù)制一份來替換。
<div class="container">
<div class="inner first">Hello</div>
<div class="inner second">And</div>
<div class="inner third">Goodbye</div>
</div>
$('.third').replaceWith($('.first'));
<div class="container">
<div class="inner second">And</div>
<div class="inner first">Hello</div>
</div>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: