有没有办法改变这个脚本以用作盲目效果。
// Andy Langton's show/hide/mini-accordion - updated 23/11/2009
// Latest version @ http://andylangton.co.uk/jquery-show-hide
// this tells jquery to run the function below once the DOM is ready
$(document).ready(function() {
// choose text for the show/hide link - can contain HTML (e.g. an image)
var showText='';
var hideText='';
// 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().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;
// 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;
});
});
FYI-
Where it says:
var showText='';
var hideText='';
It was originally:
var showText='Show';
var hideText='Hide';
我删除了显示/隐藏文本,因为我将链接应用到不同的文本区域。我喜欢 Blind 效果,而不是这种 Toggle 效果,如果可能的话,我需要知道如何应用它。我找不到一个基本的盲效果脚本,它允许将链接应用到任何文本,而不是按钮或静态文本。
谢谢!希望你能帮忙!特蕾西