查找具有特定 id 的 div 中的总元素

发布于 2024-11-03 04:51:36 字数 373 浏览 2 评论 0原文

我有以下脚本:

<div>
  <p id="example1"></p>
  <div></div>
  <p id="example2"></p>
  <div></div>
  <p id="example3"></p>
  <p id="example4"></p>
  <p id="example5"></p>
</div>

是否可以编写一个 jquery 函数来确定加载页面时与此关键字“example”匹配的元素 id 的总数?

提前致谢!

I have the following script:

<div>
  <p id="example1"></p>
  <div></div>
  <p id="example2"></p>
  <div></div>
  <p id="example3"></p>
  <p id="example4"></p>
  <p id="example5"></p>
</div>

Is it possible to write a jquery function to determine the total number of element id with matching this keyword "example" when the page is loaded?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

走野 2024-11-10 04:51:37

查看:

alert($("div p[id^='example']").length);

点击此处查看演示

或者

参考此链接 JQuery 选择器

您可以在其中使用选择器根据您的需要。

Check-it Out:

alert($("div p[id^='example']").length);

CLICK HERE TO SEE THE DEMO

OR

refer this link JQuery Selectors

where u can use selectors as per your need.

最近可好 2024-11-10 04:51:37

苏希回答你说得对。

代码片段:p[id^='eample'] 暗示任何 p “以”id 属性中的“example”单词“开头”。

但是如果你想检查“ends with”条件怎么办?只需将 ^ 替换为 $,您的代码将如下所示: p[id$='1'] 来选择任何末尾带有“1”的 id。

Sukhi answered you correctly.

Code fragment: p[id^='emample'] implies any p "starts with" the "example" word in id attribute.

But what if you want to check "ends with" condition? Simply replace ^ with $, so your code will be somthing like this: p[id$='1'] to select any id which has "1" at the end.

陌伤浅笑 2024-11-10 04:51:37

使用属性包含选择器功能:

$('p[id*="example"]').length;

Use the attribute contains selector functionality:

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