在 Jquery 中查找父级中的子级

发布于 2024-12-16 01:17:14 字数 236 浏览 0 评论 0原文

我正在使用 Visual Studio 2010 C#jQuery。在我的网络表单上,我有一个主 div(divMain)。在这个 div 中,一些子元素是动态创建的,即 divValue0,divValue1....divValuen。我想访问 iddivValue 开头的每个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赠意 2024-12-23 01:17:14

假设我正确理解了您的问题,您希望找到 id 以“divValue”开头且属于 divMain 子级的所有 div 元素。如果这是正确的,那么这样的事情应该有效:

var yourDivs = $("#divMain").children("div[id^='divValue']");

它使用“属性starts-with”选择器匹配任何具有以“divValue”开头的 id 值的元素。 children 方法返回所选元素的所有子元素,但如果如果您希望在 DOM 中进一步查找后代,则必须使用 find 来代替。

Assuming I've understood your question correctly, you want to find all div elements whose id starts with "divValue" that are children of divMain. If that's right then something like this should work:

var yourDivs = $("#divMain").children("div[id^='divValue']");

It uses an "attribute starts-with" selector to match any element with an id value starting with "divValue". The children method returns all of the children of the selected element, but if you wanted descendants further down the DOM, you'll have to use find instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文