jQuery:尝试获取输入值

发布于 2024-09-24 16:06:53 字数 198 浏览 3 评论 0原文

我正在尝试通过以下方式获取输入值:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

热情消退 2024-10-01 16:06:54
   var $a = $('#telephone_number').val();

    alert($a);

目前您没有将 div id 传递给 jQuery,您只是在执行 (#tel_no) 这是错误的。

   var $a = $('#telephone_number').val();

    alert($a);

currently you are not passing the div id to jQuery, u are just doing (#tel_no) this is wrong.

人疚 2024-10-01 16:06:53

使用这个

var $a = jQuery('#telephone_number').val();

var $a = $('#telephone_number').val();

use this

var $a = jQuery('#telephone_number').val();

OR

var $a = $('#telephone_number').val();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文