window.document.write 的 jQuery 等效项

发布于 2024-10-27 19:46:02 字数 81 浏览 1 评论 0原文

有谁知道 javascript 中 window.document.write('') 的 jQuery 等效项吗? 谢谢

Does anyone know the jQuery equivalent for window.document.write('') in javascript?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

简单爱 2024-11-03 19:46:02

这将在正文结束标记之前添加字符串“hello”。不完全是 write 的行为,但您可以对任何元素执行此操作,以使内容出现在您想要的位置。

$(document.body).append('hello');

还可以使用 prepend(content)replaceWith(content) 满足您的所有插入需求!

This will add the string "hello" right before the body closing tag. Not exactly the behavior of write, but you can do this to any element to get the content to appear where you want it.

$(document.body).append('hello');

Also available are prepend(content) and replaceWith(content) for all your insertion needs!

情深已缘浅 2024-11-03 19:46:02

首先,jQuery JavaScript,它只是一个使编码更容易的函数库。

其次,您应该避免使用 document.write。您应该使用 jQuery 将文本附加到您想要的 DOM 元素。

例子:

$('#myDiv').append('some new text')

First, jQuery is JavaScript, it is just a library of functions to make coding easier.

Second, you should avoid the use of document.write. You should use jQuery to append the text to the DOM element you want.

Example:

$('#myDiv').append('some new text')
时光病人 2024-11-03 19:46:02

尝试使用这个例子:

table = $('#flightTypeEditTemplate').clone();
table.attr('id','');
document.write(table.html());`

Try to use this example:

table = $('#flightTypeEditTemplate').clone();
table.attr('id','');
document.write(table.html());`
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文