slideToggle不适用于多个div

时间:2013-07-12 03:06:12

标签: javascript jquery slidetoggle

我的php在循环中吐出所有汽车,所以每辆车都获得相同的div id和类但不同的信息 我的问题是我的插件只适用于第一个相同的div 多数民众赞成因为所有这些都被命名为相同的

如何让这个功能智能化以了解哪些div内容应该隐藏或显示

查看我的示例http://jsfiddle.net/S2HEw/

(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:hidden').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);



$(document).ready(function(){

   $('.show_hide').showHide({
        speed: 250,  // speed you want the toggle to happen
        easing: '',  // the animation effect you want. Remove this line if you dont want an effect and if you haven't included jQuery UI
        changeText: 1, // if you dont want the button text to change, set this to 0
        showText: 'View',// the button text to show when a div is closed
        hideText: 'Close' // the button text to show when a div is open

    });

});

html,有很多这些,所有这些都具有相同的名称,这就是为什么我的切换按钮失败,

<a class="show_hide" href="#" rel="#slidingDiv">View</a>
            <div id="slidingDiv" class="toggleDiv" style="display: none;">
            <div class="right">
</div>
</div>

请注意,我无法更新我的php循环所以我真的需要找到一种方法让jquery知道它正在使用哪个div,即使它们都具有相同的div id?我可以让php做一个越来越多的数字并将其附加到类,然后在jquery端?看到这是我卡住的地方

我不知道如何动态地开展这项工作

1 个答案:

答案 0 :(得分:1)

您有slidingDiv元素的重复ID。元素的id在文档中必须是唯一的

来自id-attribure

的文档
  

id attribute指定其元素的唯一标识符(ID)。该值必须在元素home subtree中的所有ID中唯一,并且必须至少包含一个字符。该值不得包含任何space characters

<!-- DIV 1-->
<a class="show_hide" href="#" rel="#slidingDiv1">View</a>
<div id="slidingDiv1" class="toggleDiv" style="display: none;">
    <div class="right">
        DIV 1

    </div>
</div>
<!-- DIV 2-->
<a class="show_hide" href="#" rel="#slidingDiv2">View</a>
<div id="slidingDiv2" class="toggleDiv" style="display: none;">
    <div class="right">
        DIV 2

    </div>
</div>
<!-- DIV 3-->
<a class="show_hide" href="#" rel="#slidingDiv3">View</a>
<div id="slidingDiv3" class="toggleDiv" style="display: none;">
    <div class="right">
        DIV 3

    </div>
</div>

另外,需要使用:visible而不是:hidden

$('.toggleDiv:visible').slideUp(options.speed, options.easing);

演示:Fiddle