Jquery 属性长度未定义

发布于 2024-10-06 02:55:56 字数 120 浏览 1 评论 0原文

如何检查属性中字符串的长度?这显示“未定义”值:

var action = $(obj).closest("form").attr('action');
警报(动作.长度);

How can I check the lenght of the string that is in the attribute?This shows 'undefined' value:

var action = $(obj).closest("form").attr('action');
alert(action.lenght);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

不奢求什么 2024-10-13 02:55:56

您的拼写有点错误,.lenght 应该是 .长度

var action = $(obj).closest("form").attr('action');
alert(action.length);

Your spelling is just a bit off, .lenght should be .length:

var action = $(obj).closest("form").attr('action');
alert(action.length);
浅笑轻吟梦一曲 2024-10-13 02:55:56

在您在某处发帖之前,如果找不到某些方法,请务必转到 api。

http://api.jquery.com

http://api.jquery.com/length/

Always goto api when some method is not found before you make a post somewhere.

http://api.jquery.com

http://api.jquery.com/length/

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