如何查找 div 中具有给定前缀的所有输入元素?
我有一个 id 为“propertiesDiv”的 div。它具有某些输入元素。它们都是文本字段。其中一些具有诸如 propertyName1、propertyName2 等名称。我需要获取名称以“propertyName”开头的所有此类输入。
下面是我到目前为止编写的代码,但它为我提供了该 div 中的所有输入。
$('#propertiesDiv').find('input').each(function(index, element){
var name = element.name;
});
请帮忙
I have a div with id ="propertiesDiv". It has certain input elements. All of them are text fields. Some of them have names like propertyName1, propertyName2 etc. I need to get all such inputs with names starting from "propertyName".
Below is code I have written so far but it gets me all inputs within that div.
$('#propertiesDiv').find('input').each(function(index, element){
var name = element.name;
});
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找 jQuery 的
starts with
选择器(docs)实例:http://jsfiddle.net/zZYtj/
You're loking for jQuery's
starts with
selector (docs)Live example: http://jsfiddle.net/zZYtj/
你可以这样做
You can do like this