编程语言
首页 > 编程语言> > javascript – jQuery等效于window.document.write

javascript – jQuery等效于window.document.write

作者:互联网

有没有人知道javascript中window.document.write(”)的jQuery等价物?
谢谢

解决方法:

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

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

另外还有prepend(内容)和replaceWith(内容),可满足您的所有插入需求!

标签:javascript,jquery,jquery-selectors,javascript-framework
来源: https://codeday.me/bug/20191006/1861057.html