如何使用 javascript 设置文本框的值
我正在尝试从查询字符串获取一个值并将该值分配到文本框中。 我能够从查询字符串中获取值,但无法将其分配给文本框。
document.getElementByName('Contact0Email').Value = email;
尝试了上面的代码,但似乎不起作用。尽管电子邮件警报给出了正确的值。
I am trying to get a value fro query string and assign that value into a textbox.
I am able to get the value from query string but unable to assign it to textbox.
document.getElementByName('Contact0Email').Value = email;
Tried the above code but doesn't seem to be working. Though the alert of email gives the right value.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要一个小写的
value
和一个复数的Elements
:您需要
[0]
来获取列表中的第一个元素。名称不必像 id 那样是唯一的。You need a lower-case
value
and a pluralElements
:You need the
[0]
to get the first element in the list. Names don't have to be unique like ids.