$("input").on("click", function(){
//how do i find the the input index here?
});
我没有做以下事情,而是试图找到一种更聪明的方法。有什么好主意吗?
$("input").eq(0).on("click", function(){
//do something for eq(0)
});
$("input").eq(1).on("click", function(){
//do something for eq(1)
});