我有一个关闭按钮,我想在悬停的li元素上显示,但我的脚本定位列表中的每个li,而不仅仅是那个悬停的li。
$("#sortable li").hover(function () {
$(".close").show();
},
function () {
$(".close").hide();
});
答案 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();
});