个人<li> </li>上的jQuery .hover()

时间:2013-02-11 20:32:52

标签: jquery hover html-lists

我有一个关闭按钮,我想在悬停的li元素上显示,但我的脚本定位列表中的每个li,而不仅仅是那个悬停的li。

$("#sortable li").hover(function () {
$(".close").show();
},

function () {
$(".close").hide();
});

2 个答案:

答案 0 :(得分:4)

$("#sortable li").hover(function () {
    $(this).find(".close").show();
},

function () {
    $(this).find(".close").hide();
});

答案 1 :(得分:1)

$("#sortable li").hover(function() {
  $(".close", this).show();
},
function() {
  $(".close", this).hide();
});