jQuery的replaceWith()和html()有什么区别?
当 HTML 作为参数传入时,jQuery 的 replaceWith()
和 html()
函数有什么区别?
What's the difference between jQuery's replaceWith()
and html()
functions when HTML is being passed in as the parameter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
采取以下 HTML 代码:
执行:
将导致:
执行:
将导致:
所以 html() 替换元素的内容,而 replaceWith() 替换实际元素。
Take this HTML code:
Doing:
Will result in:
Doing:
Will result in:
So html() replaces the contents of the element, while replaceWith() replaces the actual element.
ReplaceWith() 将替换当前元素,而 html() 只是替换内容。
请注意,replaceWith() 实际上不会删除该元素,而只是将其从 DOM 中删除并在集合中返回给您。
Peter 的示例:http://jsbin.com/ofirip/2
replaceWith() will replace the current element, whereas html() simply replaces the contents.
Note that the replaceWith() will not actually delete the element but simply remove it from the DOM and return it to you in the collection.
An example for Peter: http://jsbin.com/ofirip/2
有两种使用 html() 和 ReplaceWith() Jquery 函数的方法。
1.) html() vs ReplaceWith()
var html = $('#test_id p').html();
将返回“我的内容”但是
var ReplaceWith = $('#test_id p').replaceWith();
将返回整个 DOM 对象我的内容
。
2.) html('value') vs ReplaceWith('value')
$('#test_id p').html('
H1 content
');
将给出你输出以下内容。但是
$('#test_id p').replaceWith('
H1 content
');
将为您提供以下输出。There are two ways of using html() and replaceWith() Jquery functions.
1.) html() vs replaceWith()
var html = $('#test_id p').html();
will return the "My Content"But the
var replaceWith = $('#test_id p').replaceWith();
will return the whole DOM object of<p>My Content</p>
.2.) html('value') vs replaceWith('value')
$('#test_id p').html('<h1>H1 content</h1>');
will give you the following out put.But the
$('#test_id p').replaceWith('<h1>H1 content</h1>');
will give you the following out put.老问题但这可能对某人有帮助。
如果您的 HTML 无效,这些功能在 Internet Explorer 和 Chrome / Firefox 中的运行方式会有所不同。
清理你的 HTML,它们就会按照文档的方式工作。
(不关闭我的
让我损失了一个晚上!)
Old question but this may help someone.
There are some differences in how these functions operate in Internet Explorer and Chrome / Firefox IF your HTML is not valid.
Clean up your HTML and they'll work as documented.
(Not closing my
</center>
cost me my evening!)了解也可以使用
.empty().append()
代替.html()
也可能很有用。 在下面显示的基准测试中,这会更快,但前提是您需要多次调用此函数。请参阅: https://jsperf.com/jquery-html-vs-empty-附加测试
It may also be useful to know that
.empty().append()
can also be used instead of.html()
. In the benchmark shown below this is faster but only if you need to call this function many times.See: https://jsperf.com/jquery-html-vs-empty-append-test