在Jquery中,如何找出被点击的元素的“eq”?

前端之家收集整理的这篇文章主要介绍了在Jquery中,如何找出被点击的元素的“eq”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当点击“uploadChoice”中的某个div时,如何确定点击了哪个div?我可以以某种方式返回一个“eq”值吗?
<div id=uploadChoice>
     <div>Text</div>
     <div>Image</div<
    <div>Text & Image</div>
</div>



$("#uploadChoice div").click(function(){
    //insert code here! :)   
});

解决方法

$('#uploadChoice div').click(function(event) {
  var index = $(this).index();
});
原文链接:https://www.f2er.com/jquery/183829.html

猜你在找的jQuery相关文章