如何使用 getElementById 通过在 JSP 中给出变量来访问元素?
我有以下代码:
var id1="Times"+another_variable;
alert(document.getElementById(id1).className);
基本上,我需要在 getElementById 中传递一个变量,我该怎么做?
I have the following code:
var id1="Times"+another_variable;
alert(document.getElementById(id1).className);
Basically, I need to pass a variable in the getElementById, how do i do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 id 名称上犯了一个小错误。它无法找到该元素的 Id。一旦我更正了 id 变量,它就开始工作了!
抱歉各位,打扰了!!!
I was doing a small mistake with the id name. It was not able to find the Id of the element. Once I corrected the id variable, it started working!
Sorry guys, for bothering!!!