我的 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 端?看到这是我卡住的地方
我不知道如何动态地进行这项工作