Jquery 属性长度未定义
如何检查属性中字符串的长度?这显示“未定义”值:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的拼写有点错误,
.lenght
应该是.长度
:Your spelling is just a bit off,
.lenght
should be.length
:在您在某处发帖之前,如果找不到某些方法,请务必转到 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/