目前我正在尝试在h3标记上添加鼠标单击事件监听器,当单击此标记时,它将滑动一个div。
这是我的HTML
<div class="gallery-wrapper">
<h3 class="visible-toogle"> >> Hide gallery</h3>
<div class="galleria">
<img src="../Images/spherefactor_001.png" data-title="Sphere factor image 1" data-description="Sphere factor">
<img src="../Images/spherefactor_002.png" data-title="Sphere factor image 2" data-description="Sphere factor">
<img src="../Images/spherefactor_003.png" data-title="Sphere factor image 3" data-description="Sphere factor">
</div>
</div>
这是我的javascript
$( document ).ready(function() {
$(".visible-toogle").click(function ()
{
var result = $(this).text();
if(result == " >> Show gallery")
{
$(this).text(" >> Hide gallery");
}
else
{
$(this).text(" >> Show gallery");
}
$(this).closest(".galleria").slideToggle( "slow", function()
{
});
});
});
我做错了什么?
答案 0 :(得分:3)
在jQuery中使用 next 可能会对您有所帮助
$(this).next("div").slideToggle("slow", function () { });
答案 1 :(得分:0)
最近的必须是父母。你需要在那里使用兄弟姐妹。
答案 2 :(得分:0)
答案 3 :(得分:0)
$(document).ready(function () {
$(".visible-toogle").click(function () {
var result = $(this).text();
var hText = result.indexOf("Hide") > -1 ? ">> Show gallery" : ">> Hide gallery";
$(this).text(hText);
//slide toggle.
$('.gallery-wrapper').find(".galleria").slideToggle(500, function () {
});
});
});
<强> Fiddle Demo 强>