如何查看被点击的项目的数量
假设我有许多带有单击事件的项目(所有项目都具有相同的元素名称,并且可能具有相同的类)。
<a>A</a>
<a>B</a>
<a>C</a>
<a>D</a>
然后我有点击事件触发的方法。如何查看被点击的项目的数量?
在示例中,如果单击“C”,那么我应该得到 3 作为答案。
Let's say I have many items with click event (all have same element name and possibly same class).
<a>A</a>
<a>B</a>
<a>C</a>
<a>D</a>
then I have method that is triggered on click event. How can I check number of the item that was clicked?
In the example if 'C' was clicked then I should get 3 as an answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
.prevAll()
:或
.index()
:You can use
.prevAll()
:Or
.index()
:您还可以使用
.index()
You can also use
.index()