jQuery1.8.0帮助手册文档处理replaceWith(content|fn)
上一篇:wrapInner(html|... 下一篇:replaceAll(sele...

replaceWith(content|fn)

返回值:jQueryreplaceWith(content|fn)

概述

将所有匹配的元素替换成指定的HTML或DOM元素。

参数

contentString, Element, jQuery, FunctionV1.2

用于将匹配元素替换掉的内容。如果这里传递一个函数进来的话,函数返回值必须是HTML字符串。

fnFunctionV1.4

返回THML字符串,用来替换的内容。

示例

描述:

把所有的段落标记替换成加粗的标记。

HTML 代码:

Hello

cruel

World

jQuery 代码:
$("p").replaceWith("Paragraph. ");
结果:
Paragraph. Paragraph. Paragraph. 

描述:

用第一段替换第三段,你可以发现他是移动到目标位置来替换,而不是复制一份来替换。

HTML 代码:
Hello
And
Goodbye
jQuery 代码:
$('.third').replaceWith($('.first'));
结果:
And
Hello
上一篇:wrapInner(html|... 下一篇:replaceAll(sele...