我想要做的就是返回悬停的i的索引,ul有一个class .around
这看起来应该可以工作
$('.around li').on("mouseover", function(event){
var myindex = $('.around').index(this);
console.log(myindex);
})
最佳答案
这个怎么样:
$('.around li').on("mouseover", function(event){
var myindex = $(this).index();
console.log(myindex);
})