jquery - 按名称引用输入?
我的表单字段的名称是 contact[0][state],我试图通过 jquery 引用它来设置默认值,但它不起作用,我想知道它是否因为括号而不起作用?
我想:
$('input[name=concat[0][state]]').val('NY');
The name of my form field is contact[0][state] and I'm trying to reference it via jquery to set a default value, but it's not working and I'm wondering if it's not working because of the brackets?
I'm trying:
$('input[name=concat[0][state]]').val('NY');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没关系,你缺少引号(“)。
试试这个:
我知道括号作为 ID 会是一个问题,但作为一个属性,只要它们在引号中,它就应该可以正常工作。
添加更多信息,你也可以逃脱括号中,但您仍必须将它们放在引号中。
nevermind, you are missing quotes (").
try this:
I know the brackets would be a problem as an ID, but as a property it should work just fine as long as they are in quotes.
adding more info, you could also escape the brackets, but youy must still keep them in quotes.
您需要双重转义大括号:
编辑:这似乎是打破jQuery 1.4.4,但它适用于 1.4.3。
You need to double-escape the braces:
Edit: this appears to be broken in jQuery 1.4.4, but it works in 1.4.3.