大家好,我正在尝试使用单击功能。当用户单击按钮时,将出现第二个文本,第一个文本将不显示,然后用户再次单击相同的按钮,这次将出现第三个文本并显示第二个文本最后再次单击相同的按钮第四个文本将出现第三个显示无。这是我的功能:
$("#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/