window.document.write 的 jQuery 等效项
有谁知道 javascript 中 window.document.write('')
的 jQuery 等效项吗? 谢谢
Does anyone know the jQuery equivalent for window.document.write('')
in javascript?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将在正文结束标记之前添加字符串“hello”。不完全是
write
的行为,但您可以对任何元素执行此操作,以使内容出现在您想要的位置。还可以使用
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.Also available are
prepend(content)
andreplaceWith(content)
for all your insertion needs!首先,jQuery是 JavaScript,它只是一个使编码更容易的函数库。
其次,您应该避免使用
document.write
。您应该使用 jQuery 将文本附加到您想要的 DOM 元素。例子:
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:
尝试使用这个例子:
Try to use this example: