在 HTML 正文中显示 javascript 值

发布于 2024-07-22 04:45:50 字数 408 浏览 13 评论 0原文

我的 html 文档标题中有以下相关代码:

test1.value = System.Gadget.Settings.read("Date1");

我正在尝试在 html 文档正文中显示 test1 值。

当我使用时它显示:

<input type="text" id="test1" />

但当我使用(在体内)时不起作用:

<script type="text/javascript">
    document.write(document.getElementById('test1').id);
</script>

任何建议将不胜感激

i have the following relevant code in the header of my html doc:

test1.value = System.Gadget.Settings.read("Date1");

And I'm trying to display the test1 value in the body of my html doc.

It displays when i use:

<input type="text" id="test1" />

But isn't working when i use (in the body):

<script type="text/javascript">
    document.write(document.getElementById('test1').id);
</script>

Any suggestions would be greatly appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

戏蝶舞 2024-07-29 04:45:50

这可能是显而易见的,但为什么不直接写:

<html>
  <body>
    <div>Here's the Date1 value: 
      <script type="text/javascript">
        document.write(System.Gadget.Settings.read("Date1"));
      </script>
    </div>
  </body>
</html>

如果这没有达到您想要的效果,请解释您的预期输出是什么。

This might be obvious, but why not just write:

<html>
  <body>
    <div>Here's the Date1 value: 
      <script type="text/javascript">
        document.write(System.Gadget.Settings.read("Date1"));
      </script>
    </div>
  </body>
</html>

If this does not do what you want, please explain what your expected output is.

离去的眼神 2024-07-29 04:45:50

这是行不通的,因为您的脚本位于页面的标题中,而输入 text1 的声明位于正文中。所以发生的情况是,当浏览器运行脚本时,它不会找到该对象。

你将需要这样的东西......

<html>
  <body>
    <input type="text" id="test1" />
    <script type="text/javascript">
      document.write(document.getElementById('test1').id);
    </script>
  </body>
</html>

That doesn't work because your script is in the header of your page and the declaration os the input text1 is in the body .. so what happends is that when the browser runs the script it won't find the object.

You will need something like this ...

<html>
  <body>
    <input type="text" id="test1" />
    <script type="text/javascript">
      document.write(document.getElementById('test1').id);
    </script>
  </body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文