0

我有一个小博客,其中包含一些用于共享的社交按钮,这些按钮已集成到我的主题中。

现在我想更改显示/隐藏,使其默认显示并在单击时隐藏。

$(document).ready(function() {
    $(".post-share").hide();
    $("a.share-btn").click(function() {
        $(this).prev(".post-share").slideToggle("slow");
    });
});

任何人都可以帮忙吗?

4

3 回答 3

2
$(document).ready(function() {
  $(".post-share").show();
  $("a.share-btn").click(function() {
    $(this).prev(".post-share").slideToggle("slow");
  });
});
于 2012-05-26T21:05:28.430 回答
1

将dom更改为hide准备就绪show

 $(document).ready(function() {
    $(".post-share").show();
    $("a.share-btn").click(function() {
       $(this).prev(".post-share").slideToggle("slow");
    });

 });
于 2012-05-26T21:04:55.157 回答
1

如果您希望它默认显示,然后在单击时隐藏...

$(document).ready(function() {
    $(".post-share").show();
    $("a.share-btn").click(function() {
        $(this).prev(".post-share").slideUp("slow");
    });
});
于 2012-05-26T21:06:02.500 回答