查找具有特定 id 的 div 中的总元素
我有以下脚本:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看:
点击此处查看演示
或者
参考此链接 JQuery 选择器,
您可以在其中使用选择器根据您的需要。
Check-it Out:
CLICK HERE TO SEE THE DEMO
OR
refer this link JQuery Selectors
where u can use selectors as per your need.
苏希回答你说得对。
代码片段:
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.使用属性包含选择器功能:
Use the attribute contains selector functionality: