有没有人知道javascript中window.document.write('')
的jQuery等价物?
感谢
答案 0 :(得分:29)
这将在正文结束标记之前添加字符串“hello”。不完全是write
的行为,但您可以对任何元素执行此操作,以使内容显示在您想要的位置。
$(document.body).append('hello');
还可以prepend(content)
和replaceWith(content)
用于满足您的所有插入需求!
答案 1 :(得分:18)
首先,jQuery 是 JavaScript,它只是一个使编码更容易的函数库。
其次,你应该避免使用document.write
。您应该使用jQuery将文本追加到您想要的DOM元素。
示例:
$('#myDiv').append('some new text')
答案 2 :(得分:3)
尝试使用此示例:
table = $('#flightTypeEditTemplate').clone();
table.attr('id','');
document.write(table.html());`