我正在使用 Andy Langton 的显示/隐藏 jQuery 代码,但是当您在同一页面上使用多个切换时,该代码看起来有些小故障。
当使用多个显示/隐藏时,它不会切换到正确的单词。它似乎整体跟踪最后一次切换,而不是每个链接的设置。换句话说,如果我在第一篇文章上点击“更多”,它将变为“更少”。如果我在下一篇文章上按“更多”而不隐藏上一篇,它将停留在“更多”,如果我现在尝试隐藏第一篇文章,那个词仍然是“少”。
这是我正在使用的代码:
// Andy Langton's show/hide/mini-accordion - updated 23/11/2009
// Latest version @ http://andylangton.co.uk/jquery-show-hide
$(document).ready(function() {
// choose text for the show/hide link - can contain HTML (e.g. an image)
var showText='MORE ↓';
var hideText='LESS ↑';
// initialise the visibility check
var is_visible = false;
// append show/hide links to the element directly preceding the element with a class of "toggle"
$('.toggle').prev('.moree').append('<a href="#" class="toggleLink">'+showText+'</a>');
// hide all of the elements with a class of 'toggle'
$('.toggle').hide();
// capture clicks on the toggle links
$('a.toggleLink').click(function() {
// switch visibility
is_visible = !is_visible;
// change the link depending on whether the element is shown or hidden
$(this).html( (!is_visible) ? showText : hideText);
//$(this).html( ($(this).html() == hideText) ? showText : hideText);
// toggle the display - uncomment the next line for a basic "accordion" style
//$('.toggle').hide();$('a.toggleLink').html(showText);
$(this).parent().next('.toggle').toggle('slow');
// return false so any link destination is not followed
return false;
});
});
任何解决此问题的帮助将不胜感激。
马兹