当点击“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(); });