访问 DOM 中对象内的对象?
如何使用 javascript 访问下面示例中 id 950 的 div?
<ins>
<div>
<div>
<div id="950"></div>
</div>
</div>
</ins>
简单的 getelementbyid 不起作用......
document.getElementById('950');
How do I accesss the div the id 950 in the example below using javascript?
<ins>
<div>
<div>
<div id="950"></div>
</div>
</div>
</ins>
A simple getelementbyid doesn't work...
document.getElementById('950');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
getElementById
始终返回请求的元素,而不考虑嵌套级别。这里一定发生了其他事情。例如,您的示例中ins
标记的用途是什么?getElementById
always returns the requested element, without regard nesting level. Something else must be going on here. For example, what is the purpose of theins
tag in your example?“id”不能以数字开头。请参阅:http://www.w3.org/TR/html4/ types.html#type-name
其他一切都好。
"id" can't begin with a number. See this: http://www.w3.org/TR/html4/types.html#type-name
Everything else is ok.
ID 属性应以字母开头。也许这就是导致 JS 解析器返回错误的原因。
The ID attribute should start with a letter. Perhapse that is what causing JS parser to return an error.
确保在创建 dom 元素后调用
document.getElementById('950');
。尝试移动页面底部的代码!
make sure you are calling
document.getElementById('950');
after dom elements are created.Try shifting your code at the bottom of the page!!