jQuery等效于window.document.write

Kya*_*ein 11 javascript jquery javascript-framework jquery-selectors

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

ctc*_*rry 30

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

$(document.body).append('hello');
Run Code Online (Sandbox Code Playgroud)

此外,还包括prepend(content)replaceWith(content)您的所有需求插入!


Roc*_*mat 19

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

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

例:

$('#myDiv').append('some new text')
Run Code Online (Sandbox Code Playgroud)

  • +1 @Rocket ...感谢你的建议...我知道jQuery是一个javascript库,但我之所以在寻找jQuery等同的原因是我想尽可能编写跨浏览器兼容的代码. (2认同)