JavaScript 内联输出

发布于 2024-11-18 10:50:33 字数 466 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

枫林﹌晚霞¤ 2024-11-25 10:50:33

您必须使用 document.write [文档]

<div id="test">
    <script type="text/javascript">document.write('abcdefg');</script>
</div>  

演示

需要注意的是,它不适用于XHTML 文档。请参阅文档了解更多详细信息。

You'd have to use document.write [docs]:

<div id="test">
    <script type="text/javascript">document.write('abcdefg');</script>
</div>  

DEMO

With the caveat that it does not work in XHTML documents. See the documentation for more details.

疯了 2024-11-25 10:50:33

撇开“Kosher”代码不谈,是的。

文档.write()

"Kosher" code aside, yes.

document.write()

荒路情人 2024-11-25 10:50:33

在基于标准的浏览器中:

document.getElementByID("test").textContent = output;

为了获得更广泛的支持,您可以在 jQuery 中使用 text (或者等效方法,如果您选择的图书馆):

$('#test').text(output);

In standards-based browsers:

document.getElementByID("test").textContent = output;

For broader support, you could use text in jQuery (or the equivalent method if your library of choice):

$('#test').text(output);
宣告ˉ结束 2024-11-25 10:50:33

你可以这样写:

<div id="test">
  <script>
    document.getElementById('test').innerHTML = "stuff";
    //this line only changes content in the div with id="test", not the whole dom
  </script>
</div>

但是你应该避免将脚本放入 div 中,因为它可能会被覆盖。

You could write something like:

<div id="test">
  <script>
    document.getElementById('test').innerHTML = "stuff";
    //this line only changes content in the div with id="test", not the whole dom
  </script>
</div>

But you should avoid putting a script inside a div because it may be overwritten.

哑剧 2024-11-25 10:50:33

如果您的代码位于 div 中,那么 document.write('abcdefg') 是在执行点插入内联内容的正确选择。

或者,如果您的代码不在 div 内,您可以执行以下操作:

<div id="test">
</div>

<script type="text/javascript">
var output = 'abcdefg';
document.getElementById("test").innerHTML = output;
</script>

您必须确保您的代码在页面加载且 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:

<div id="test">
</div>

<script type="text/javascript">
var output = 'abcdefg';
document.getElementById("test").innerHTML = output;
</script>

You will have to make sure that your code runs AFTER the page is loaded and the div is present.

花桑 2024-11-25 10:50:33

我知道这是一个老问题,但如果有人仍在寻找,那么这里有一个可以完成这项工作的方便函数。

function echo(text)
{
    document.body.appendChild(document.createElement("div")).appendChild(document.createTextNode(text));
}

I know this is an old question but if anybody is still looking then here is a handy function that does the job.

function echo(text)
{
    document.body.appendChild(document.createElement("div")).appendChild(document.createTextNode(text));
}
落花随流水 2024-11-25 10:50:33

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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文