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');
});