使用 div/span id 访问选择
在jquery中,是否可以通过简单地使用div或span id加上“select”选择器来访问select元素?我问这个问题是因为我有一系列自动生成的表单,这意味着我无法为表单元素分配 id,而且名称很奇怪,例如“w24”,我想访问表单元素,特别是使用周围范围的选择id 和“select” 选择器示例:
$("#hiv_care select").attr("disabled",true);
我已经尝试过此操作,但它不起作用,迫使我显式使用下拉列表名称。
In jquery is it possible to access a select element by simply using the div or span id plus the "select" selector? I ask because i have a series of auto-generated forms meaning I can't assign an id to the form elements plus the names are weird like "w24", I'd like to access a form element specifically a select using the surrounding span id and "select" selector example:
$("#hiv_care select").attr("disabled",true);
I've tried this but it doesn't work, forcing me to explicitly use the dropdown name.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来我使用了错误的 div id。 SLaks 感谢 jsfiddle.net 的链接,它暴露了我的方法,并且确实帮助我测试了我的 jquery 代码。
Seems I was using the wrong div id. SLaks thanks for the link to jsfiddle.net it exposed my ways and is really helping me with testing out my jquery code.