如何获取JavaScript对象的值
this.mobj=document.getElementById(menu1)
var ob1 = this.mobj;
alert(" Obj value"+ob1.whichmethod());
在警报中我收到“Drop menu Obj”+Object 对象 这是 JavaScript。如果是 jQuery,我就可以完成 $(this).attr('value')
。如何获得 JavaScript 对象的值?
this.mobj=document.getElementById(menu1)
var ob1 = this.mobj;
alert(" Obj value"+ob1.whichmethod());
In the alert I am getting "Drop menu Obj"+Object object
This is JavaScript.. If it was jQuery I could have done $(this).attr('value')
. How to get the
value of JavaScript object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定你是否正在寻找更多,但是如果你想要 JavaScript 中对象的 value 属性,你可以这样做:
如果你正在寻找超链接的 href,你可以像这样得到它这:
I'm not sure if you're looking for more, but if you want the value property of the object in JavaScript, you can do it like this:
If you're looking for the href of the hyperlink, you can get it like this:
document.getElementById(menu1).value
或ob1.value
document.getElementById(menu1).value
orob1.value
您可以通过点运算符(.)或方括号([])访问对象属性。
例如。
you can access the object properties by dot operator(.) or Square brackets([]).
For Example.