0

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

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

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

2 回答 2

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

function () {
    $(this).find(".close").hide();
});
于 2013-02-11T20:34:33.490 回答
1
$("#sortable li").hover(function() {
  $(".close", this).show();
},
function() {
  $(".close", this).hide();
});
于 2013-02-11T20:37:37.440 回答