在 Jquery 中查找父级中的子级
我正在使用 Visual Studio 2010 C#
和 jQuery
。在我的网络表单上,我有一个主 div(divMain
)。在这个 div 中,一些子元素是动态创建的,即 divValue0,divValue1....divValuen
。我想访问 id
以 divValue
开头的每个 div。
I am working with Visual Studio 2010 C#
and jQuery
. On my web form I have one main div(divMain
). Inside this div some children are created dynamically namely divValue0,divValue1....divValuen
. I want to access each div whose id
starts with divValue
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设我正确理解了您的问题,您希望找到
id
以“divValue”开头且属于divMain
子级的所有div
元素。如果这是正确的,那么这样的事情应该有效:它使用“属性starts-with”选择器匹配任何具有以“divValue”开头的
id
值的元素。children
方法返回所选元素的所有子元素,但如果如果您希望在 DOM 中进一步查找后代,则必须使用find
来代替。Assuming I've understood your question correctly, you want to find all
div
elements whoseid
starts with "divValue" that are children ofdivMain
. If that's right then something like this should work:It uses an "attribute starts-with" selector to match any element with an
id
value starting with "divValue". Thechildren
method returns all of the children of the selected element, but if you wanted descendants further down the DOM, you'll have to usefind
instead.