1

HTML:

<a href="#">Show next element</a>
<div>content</div>

jQuery:

$('a').toggle(function () {
    $(this).next().show();
},
function () {
    $(this).next().hide();
});

如何更改上面的 jQuery,以便在元素可见时将链接中的“显示”更改为“隐藏”?

谢谢!

4

2 回答 2

1

没测试过...

$('a').toggle(function () {
    $(this).next().show();
    $(this).html("Hide next element");
},
function () {
    $(this).next().hide();
    $(this).html("Show next element");
});
于 2010-01-25T06:05:19.380 回答
0
$('a').toggle(function () {

    $(this).next().show();
    $(this).html('Hide next element');
},
function () {
    $(this).next().hide();
    $(this).html('Show next element');
});
于 2010-01-25T06:06:14.467 回答