jQuery:尝试获取输入值
我正在尝试通过以下方式获取输入值:
var $a = ('#telephone_number').val();
alert($a);
但是什么也没有,有什么想法吗?
telephone_number 是输入的 ID。
问候
哈维
i'm trying to obtain an input value with this:
var $a = ('#telephone_number').val();
alert($a);
But nothing, any idea?
telephone_number is the id of the input.
Regards
Javi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前您没有将 div id 传递给 jQuery,您只是在执行 (#tel_no) 这是错误的。
currently you are not passing the div id to jQuery, u are just doing (#tel_no) this is wrong.
使用这个
或
use this
OR