使用 dom 模型获取和设置 html 标签的值
我想用文档模型设置标签的值
我需要将changeme值设置为某个值
我该怎么做,没有jquery请
<a href="">changeme</a>
提前致谢
I want to set value of a tag with document model
I need to set changeme value to something
How can i do that no jquery please
<a href="">changeme</a>
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您首先需要获取 DOM 元素的引用。有多种方法可以实现此目的(最简单的方法可能是
getElementById
,因此如果您可以为链接提供id
,请使用该方法)。如果没有,您可以使用getElementsByTagName
:获得对元素的引用后,您可以使用
textContent
属性更改文本。不幸的是,事情并没有那么简单,因为 IE 使用innerText
而不是textContent
:You will need first to get a reference to the DOM element. There are numerous ways of doing this (the easiest is probably
getElementById
, so use that if you can give your link anid
). If not, you could usegetElementsByTagName
:Once you have a reference to the element, you can change the text using the
textContent
property. Unfortunately, it's not quite that simple, because IE usesinnerText
rather thantextContent
: