gpt4 book ai didi

javascript - 使用 jquery 根据按钮隐藏和显示 div

转载 作者:行者123 更新时间:2023-11-28 00:11:56 24 4
gpt4 key购买 nike

我需要使用 html 和 jquert 根据按钮隐藏和引导 div

是按钮name=show status 我点击按钮更改为name=hide并显示div,反过来也是一样的功能

最佳答案

You could do something like this (Note the custom display attribute):

$("#btn").click(function() {
var item = $("input[name=yourInput]");

if (item.attr("display")) {
item.show();
item.attr("display", false);
} else {
item.hide();
item.attr("display", true);
}
});

<input name="yourInput" display="true" />

http://jsfiddle.net/Jrz5Y/1/

关于javascript - 使用 jquery 根据按钮隐藏和显示 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14685916/

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