gpt4 book ai didi

javascript - 如何使用Jquery使按钮消失然后重新出现?

转载 作者:行者123 更新时间:2023-12-01 05:22:03 25 4
gpt4 key购买 nike

我有数据,当我单击显示更多时,它会显示数据,并且显示更多消失。将出现数据和新按钮Show Less。当我点击显示更少时,数据再次消失。单击显示更少后,如何使显示更多重新出现?

我的 HTML 代码是:

<button id="show">Show More</button>
<div id="complete">
<img src="Pictures/xerox.png" height="20%" width="20%">
</div>
<p>
<button id="hide">Show Less</button>

我的 Jquery 代码是:

$(document).ready(function(){
$("#show").click(function(){
$(this).parent().addClass("more");
$(this).hide();
$("#complete").show();
});

$("#hide").click(function(){
$("#complete").hide();
});
});

最佳答案

看起来你的 jQuery 正在告诉进行调用的对象在单击时隐藏自身:

$(this).hide();

根据您的描述,我建议将以下内容添加到处理 Show Less 函数的函数中:

$('#show').show();

关于javascript - 如何使用Jquery使按钮消失然后重新出现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42449498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com