jQuery的replaceWith()方法
翻譯結果:
replace
英[rɪˈpleɪs] 美[rɪˈples]
vt.代替;替換;把…放回原位;(用…)替換
with
英[wɪð] 美[wɪθ]
prep.隨著;和,跟;關於;和…一致
jQuery的replaceWith()方法語法
作用:replaceWith() 方法以指定的 HTML 內容或元素取代被選元素。 replaceWith() 與 replaceAll() 作用相同。差異在於語法:內容和選擇器的位置,以及 replaceAll() 無法使用函數進行替換。
語法:$(selector).replaceWith(content)
參數:
參數 | 描述 |
content | 必要。規定替換被選元素的內容。可能的值:HTML 程式碼- 如("<div></div>")新元素- 例如("<div></div>")新元素- 例如(document.createElement("div"))已存在的元素-($(".div1"))已存在的元素不會被移動,只會被複製,並包裹被選元素。 |
selector | 必要。規定要替換的元素。 |
使用函數取代元素:使用函數將被選元素替換為新內容。
語法:$(selector).replaceWith(function())
參數:
參數 | 描述 |
function() | 必要。傳回待替換被選元素的新內容的函數。 |
jQuery的replaceWith()方法範例
<html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".btn1").click(function(){ $("p").replaceWith("<b>Hello world!</b>"); }); }); </script> </head> <body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button class="btn1">用粗体文本替换所有段落</button> </body> </html>
#點擊 "執行實例" 按鈕查看線上實例