HTML:
<a href="#">Show next element</a>
<div>content</div>
jQuery:
$('a').toggle(function () {
$(this).next().show();
},
function () {
$(this).next().hide();
});
如何更改上面的 jQuery,以便在元素可见时将链接中的“显示”更改为“隐藏”?
谢谢!
没测试过...
$('a').toggle(function () {
$(this).next().show();
$(this).html("Hide next element");
},
function () {
$(this).next().hide();
$(this).html("Show next element");
});
$('a').toggle(function () {
$(this).next().show();
$(this).html('Hide next element');
},
function () {
$(this).next().hide();
$(this).html('Show next element');
});