0

所以我找到了一个可以滑动打开多个 div 的脚本,但我似乎无法让它工作。我认为我的主页有问题,但我创建了一个单独的页面,但似乎仍然无法正常工作。

调试器中没有消息,也没有错误;但 DIV 没有出现。

<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script type='text/javascript'>
(function ($) {
    $.fn.showHide = function (options) {

    //default vars for the plugin
        var defaults = {
            speed: 1000,
            easing: '',
            changeText: 0,
            showText: 'Show',
            hideText: 'Hide'

        };
        var options = $.extend(defaults, options);

        $(this).click(function () {
// optionally add the class .toggleDiv to each div you want to automatically close
                      $('.toggleDiv').slideUp(options.speed, options.easing);
             // this var stores which button you've clicked
             var toggleClick = $(this);
             // this reads the rel attribute of the button to determine which div id to toggle
             var toggleDiv = $(this).attr('rel');
             // here we toggle show/hide the correct div at the right speed and using which easing effect
             $(toggleDiv).slideToggle(options.speed, options.easing, function() {
             // this only fires once the animation is completed
             if(options.changeText==1){
             $(toggleDiv).is(":visible") ? toggleClick.text(options.hideText) : toggleClick.text(options.showText);
             }
              });

          return false;

        });

    };
})(jQuery);

</script>
<a class="show_hide" href="#" rel="#slidingDiv">View</a></pre>
<div id="slidingDiv" class="toggleDiv" style="display: none;">Fill this space with really interesting content.</div>
4

1 回答 1

1

它正在工作,对我来说。实际上,您忘记调用函数 showHide(),您可以这样做:

$(document).ready(function() {
$('.show_hide').showHide();


});

http://jsbin.com/amuhom/1/edit

我添加了一个 div 和一个按钮。我想这是预期的行为?

于 2013-07-10T02:43:32.750 回答