JavaScript 内联输出
在 javascript 中,假设您有这段代码:
<div>
<script type="text/javascript">var output = 'abcdefg';</script>
</div>
有没有什么方法可以简单地将 output
的内容“回显”(使用 PHP 术语)到 #test
中?也就是说,假设您没有从 DOM 中遍历或选择的标准方法,要输出内联字符串?
document.write("...");
确实写入了 output
的内容,但这样做时,它用 output
替换了整个文档代码>.
我正在寻找的解决方案的行为方式应该与 PHP echo
相同:将输出内联写入文档中。
In javascript suppose you have this piece of code:
<div>
<script type="text/javascript">var output = 'abcdefg';</script>
</div>
Is there any way to simply "echo" (using PHP terminology) the contents of output
into #test
? That is, to output a string inline, assuming you have no standard way of traversing or selecting from the DOM?
document.write("...");
does write the contents of output
, but in doing so, it replaces the entire document with the output
.
The solution I'm looking for should act the same way a PHP echo
would: write the output into the document inline.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
您必须使用
document.write
[文档]:演示
需要注意的是,它不适用于XHTML 文档。请参阅文档了解更多详细信息。
You'd have to use
document.write
[docs]:DEMO
With the caveat that it does not work in XHTML documents. See the documentation for more details.
撇开“Kosher”代码不谈,是的。
文档.write()
"Kosher" code aside, yes.
document.write()
在基于标准的浏览器中:
为了获得更广泛的支持,您可以在 jQuery 中使用 text (或者等效方法,如果您选择的图书馆):
In standards-based browsers:
For broader support, you could use text in jQuery (or the equivalent method if your library of choice):
你可以这样写:
但是你应该避免将脚本放入 div 中,因为它可能会被覆盖。
You could write something like:
But you should avoid putting a script inside a div because it may be overwritten.
如果您的代码位于 div 中,那么
document.write('abcdefg')
是在执行点插入内联内容的正确选择。或者,如果您的代码不在 div 内,您可以执行以下操作:
您必须确保您的代码在页面加载且 div 存在后运行。
If your code is in the div, then
document.write('abcdefg')
is the proper choice for inserting something inline at the point of execution.Or, if your code is not inside the div, you can do this:
You will have to make sure that your code runs AFTER the page is loaded and the div is present.
我知道这是一个老问题,但如果有人仍在寻找,那么这里有一个可以完成这项工作的方便函数。
I know this is an old question but if anybody is still looking then here is a handy function that does the job.
console.log()
http://getfirebug.com/logging
在 chrome 和 ie 9 中也支持..注意为了向后兼容,我认为它会让你 ie8 及以下版本......
console.log()
http://getfirebug.com/logging
also supported in chrome and ie 9.. watch out for backwards compatibly it will get you ie8 and down i think...