简单的jquery代码,仅在悬停LI时显示段落
<ol id="sortme">
<li>this content <p class="edit">first hidden content</p></li>
<li>this content <p class="edit">second hidden content</p></li>
<li>this content <p class="edit">third hidden content</p></li>
</ol>
Jquery的
$(".edit").hide;
$('#sortme li').hover(
function () {
$(".edit").show();
},
function () {
$(".edit").hide();
}
);
我的问题是当鼠标悬停在所有段落的所有段落时 我需要一个接一个地做 所以当悬停第一个li“第一个隐藏内容”时出现 当悬停第二个“第一隐藏内容”时,“第二隐藏内容”消失,“第二隐藏内容”
以及列表的其余部分
答案 0 :(得分:3)
您可以在this
中将其作为第二个参数提供给$()
进行搜索:
$(".edit").hide;
$('#sortme li').hover(
function () {
$(".edit", this).show();
},
function () {
$(".edit", this).hide();
}
);
答案 1 :(得分:1)
这样做 -
$('#sortme li').hover( function () {
$(this).find(".edit").show();
},
function () {
$(this).find(".edit").hide();
});
OR
$('#sortme li').hover(function () {
$(this).find(".edit").toggle();
});
答案 2 :(得分:1)
您需要向children of current
li申请show hide,以便edit
instead
申请every element
课程edit
<强> Live Demo 强>
$(".edit").hide;
$('#sortme li').hover(
function () {
$(this).find('.edit').show();
},
function () {
$(this).find('.edit').hide();
}
);
答案 3 :(得分:0)
您只能使用CSS实现相同的效果。 http://jsfiddle.net/LNsaa/
#sortme p {
display: none;
}
#sortme li:hover > p {
display: block;
}
然后,您可以应用CSS3过渡以获得一些漂亮而流畅的效果。