jQuery 选择器选择类名后仅跟随一个数字的类名
所以我有以下结构:
<div class="num1">1,2</div>
<div class="num11">2,2</div>
<div class="num2">5,4</div>
<div class="num21">3,2</div>
etc...
我想要一个 jQuery 选择器,它只选择 num1 和 num2,numX,其中 X 只是一个数字。目前我有一个选择器:
alert($("div[class^='num']").max());
它当然会返回所有的数字,所以我想知道是否有某种方法可以轻松处理这个问题。顺便说一句,如果有人想知道 .max() 是什么,它来自 jQuery计算插件
so I have the following structure:
<div class="num1">1,2</div>
<div class="num11">2,2</div>
<div class="num2">5,4</div>
<div class="num21">3,2</div>
etc...
I want a jQuery selector that will select only num1 and num2, numX where X being only one number. Currently I have a selector:
alert($("div[class^='num']").max());
which of course returns all of the num's, so I'm wondering if there is some sort of way to handle this easily. Btw, if someone is wondering what the .max() is, it is from jQuery calculation plugin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在你已经有了它,
它使用正则表达式来选择具有适当类名的元素。
希望有帮助
Here you have it
It uses a regular expression to select elements with appropiate classnames.
Hope it helps