こんにちは eveyone クリック機能を使用しようとしています。ユーザーがボタンをクリックすると、2 番目のテキストが表示され、最初のテキストが表示されず、ユーザーが同じボタンをもう一度クリックすると、3 番目のテキストが表示され、2 番目のテキストが表示されます。最後にもう一度同じボタンをクリックすると、4 番目のテキストが表示され、3 番目のテキストは表示されません。これが私の機能です:
$("#slider1next").click(function () {
$(".text").css('display', '');
$("#first_one").css('display','none');
});
ここにHTMLがあります
<button id="slider1next" >Clickme</button>
<p class="text" id="first_one">This is the first text</p>
<p class="text" id="second_one" style="display:none">This is the second text</p>
<p class="text" id="third_one" style="display:none">This is the third text</p>
<p class="text" id="fourth_one" style="display:none">This is the four text</p>
また、 http://jsfiddle.net/ganymedes/7kxAE/も見ることができます