在 HTML 正文中显示 javascript 值
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能是显而易见的,但为什么不直接写:
如果这没有达到您想要的效果,请解释您的预期输出是什么。
This might be obvious, but why not just write:
If this does not do what you want, please explain what your expected output is.
这是行不通的,因为您的脚本位于页面的标题中,而输入 text1 的声明位于正文中。所以发生的情况是,当浏览器运行脚本时,它不会找到该对象。
你将需要这样的东西......
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 ...