gpt4 book ai didi

javascript - 我如何使用 jquery 函数来处理多个 div

转载 作者:行者123 更新时间:2023-11-28 16:14:26 25 4
gpt4 key购买 nike

我想要 <div> 有显示/隐藏功能,使用 JavaScript/DOM 属性。

使用 JavaScript onclick()有两个按钮,showhide ,每个人都有自己的<div> s,它会像这样工作:

  • 默认情况下,show按钮隐藏,主<div>和隐藏按钮显示。单击hide按钮隐藏了主<div>和“隐藏”按钮本身,显示 show按钮。
  • 点击show按钮显示主<div>和“显示”按钮显示 hide按钮我认为这可以使用类似 document.getElementById(DIVid).style.visibility="hidden" 来实现.

但是我该怎么做呢?

最佳答案

$('#hidebutton').click(function() {
$('#DIVid, #showbutton').show();
$(this).hide();
});

$('#showbutton').click(function() {
$('#DIVid, #hidebutton').show();
$(this).hide();
});

或者如果你愿意:

$('#hidebutton, #showbutton').click(function() {
var show = $(this).is('#showbutton');
$('#DIVid, #hidebutton').toggle(show);
$('#showbutton').toggle(!show);
});

关于javascript - 我如何使用 jquery 函数来处理多个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11899041/

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