使用按钮切换显示/隐藏div吗?


72

希望这是一个简单的问题。我有一个div我想用按钮切换隐藏/显示

<div id="newpost">

Answers:


65

看看jQuery Toggle

HTML:

<div id='content'>Hello World</div>
<input type='button' id='hideshow' value='hide/show'>

jQuery的:

jQuery(document).ready(function(){
    jQuery('#hideshow').live('click', function(event) {        
         jQuery('#content').toggle('show');
    });
});

对于jQuery 1.7及更高版本

jQuery(document).ready(function(){
    jQuery('#hideshow').on('click', function(event) {        
        jQuery('#content').toggle('show');
    });
});

供参考,请检查此演示


1
现在.live()已过时的1.7,在取出1.9所以在新版本中,你可以使用。对()(详情api.jquery.com/on
罗希特杜贝

您如何将其设置为默认隐藏?编辑:弄清楚了,只是在捕获按钮按下的代码之前添加了切换开关。
simonr2 '16

没有jQuery呢?每个人都可以通过jQ做到这一点
绿色

2
我想toggle('show')是一个错字(有些人已经公然复制并粘贴到其他答案中),因为只有'slow''fast'在持续时间内被接受。尽管如此,它仍然有效,因为我认为任何无效的字符串都将默认为'slow'jsfiddle.net/d5y06e6o
Shikkediel's

131

纯JavaScript:

var button = document.getElementById('button'); // Assumes element with id='button'

button.onclick = function() {
    var div = document.getElementById('newpost');
    if (div.style.display !== 'none') {
        div.style.display = 'none';
    }
    else {
        div.style.display = 'block';
    }
};

查看演示

jQuery的

$("#button").click(function() { 
    // assumes element with id='button'
    $("#newpost").toggle();
});

查看演示


嗨,有什么主意如何使其具有良好的淡入淡出效果吗?
Aerodynamika 2014年

1
@deemeetree:您可以传递'slow'toggle。如果您使用的是纯JS解决方案,请告诉我,我可以为此提供一些建议
Andrew Whitaker 2014年

谢谢,@ Andrew我还发现在新的jQuery中有fadeToggle
Aerodynamika

1
我正在检查其他问题,并在该线程中遇到一个答案:stackoverflow.com/questions/18808112 / ... ...显然是因为新版本的JQuery不再支持切换。
巴里·迈克尔·道尔

1
@BarryDoyle:实际上,切换事件在1.8中已被弃用。此答案使用切换的方式仍然可用,请参见以下示例:jsfiddle.net/KpFRb/532
Andrew Whitaker

35

JavaScript-切换Element.styleMDN

var toggle  = document.getElementById("toggle");
var content = document.getElementById("content");

toggle.addEventListener("click", function() {
  content.style.display = (content.dataset.toggled ^= 1) ? "block" : "none";
});
#content{
  display:none;
}
<button id="toggle">TOGGLE</button>
<div id="content">Some content...</div>

关于^按位XOR作为I / O切换器
https://developer.mozilla.org/zh-CN/docs/Web/API/HTMLElement/dataset

JavaScript-切换 .classList.toggle()

var toggle  = document.getElementById("toggle");
var content = document.getElementById("content");

toggle.addEventListener("click", function() {
  content.classList.toggle("show");
});
#content{
  display:none;
}
#content.show{
  display:block; /* P.S: Use `!important` if missing `#content` (selector specificity). */
}
<button id="toggle">TOGGLE</button>
<div id="content">Some content...</div>

jQuery-切换

.toggle()文件; .fadeToggle()文件; .slideToggle()文件

$("#toggle").on("click", function(){
  $("#content").toggle();                 // .fadeToggle() // .slideToggle()
});
#content{
  display:none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="toggle">TOGGLE</button>
<div id="content">Some content...</div>

jQuery-切换.toggleClass()文档

.toggle()切换元素的display "block"/"none"

$("#toggle").on("click", function(){
  $("#content").toggleClass("show");
});
#content{
  display:none;
}
#content.show{
  display:block; /* P.S: Use `!important` if missing `#content` (selector specificity). */
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="toggle">TOGGLE</button>
<div id="content">Some content...</div>

HTML5-切换使用<summary><details>

(在IE和Opera Mini上不受支持)

<details>
  <summary>TOGGLE</summary>
  <p>Some content...</p>
</details>

HTML-切换使用 checkbox

[id^=toggle],
[id^=toggle] + *{
  display:none;
}
[id^=toggle]:checked + *{
  display:block;
}
<label for="toggle-1">TOGGLE</label>

<input id="toggle-1" type="checkbox">
<div>Some content...</div>

HTML-使用 radio

[id^=switch],
[id^=switch] + *{
  display:none;
}
[id^=switch]:checked + *{
  display:block;
}
<label for="switch-1">SHOW 1</label>
<label for="switch-2">SHOW 2</label>

<input id="switch-1" type="radio" name="tog">
<div>1 Merol Muspi...</div>

<input id="switch-2" type="radio" name="tog">
<div>2 Lorem Ipsum...</div>

CSS-切换使用 :target

(只是为了确保您的武器库中有它)

[id^=switch] + *{
  display:none;
}
[id^=switch]:target + *{
  display:block;
}
<a href="#switch1">SHOW 1</a>
<a href="#switch2">SHOW 2</a>

<i id="switch1"></i>
<div>1 Merol Muspi ...</div>

<i id="switch2"></i>
<div>2 Lorem Ipsum...</div>


动画类过渡

如果您选择JS / jQuery方式之一来实际切换className,则始终可以向元素添加动画过渡,这是一个基本示例:

var toggle  = document.getElementById("toggle");
var content = document.getElementById("content");

toggle.addEventListener("click", function(){
  content.classList.toggle("appear");
}, false);
#content{
  /* DON'T USE DISPLAY NONE/BLOCK! Instead: */
  background: #cf5;
  padding: 10px;
  position: absolute;
  visibility: hidden;
  opacity: 0;
          transition: 0.6s;
  -webkit-transition: 0.6s;
          transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}
#content.appear{
  visibility: visible;
  opacity: 1;
          transform: translateX(0);
  -webkit-transform: translateX(0);
}
<button id="toggle">TOGGLE</button>
<div id="content">Some Togglable content...</div>


您不能display: none使用过渡元素
绿色

@格林不,你不能。这就是动画示例的原因。
Roko C. Buljan '16

13

这是执行切换的普通JavaScript方法:

<script>
  var toggle = function() {
  var mydiv = document.getElementById('newpost');
  if (mydiv.style.display === 'block' || mydiv.style.display === '')
    mydiv.style.display = 'none';
  else
    mydiv.style.display = 'block'
  }
</script>

<div id="newpost">asdf</div>
<input type="button" value="btn" onclick="toggle();">

4
不错的普通JavaScript解决方案。我只建议将输入类型设置为按钮而不是提交,因为
Submit


0

这就是我使用类隐藏和显示内容的方式。将类更改为无将更改显示为块,将类更改为“ a”将显示为无。

<!DOCTYPE html>
<html>
<head>
<style>
body  {
  background-color:#777777;
  }
block1{
  display:block; background-color:black; color:white; padding:20px; margin:20px;
  }
block1.a{
  display:none; background-color:black; color:white; padding:20px; margin:20px;
  }
</style>
</head>
<body>
<button onclick="document.getElementById('ID').setAttribute('class', '');">Open</button>
<button onclick="document.getElementById('ID').setAttribute('class', 'a');">Close</button>
<block1 id="ID" class="a">
<p>Testing</p>
</block1>
</body>
</html>

0
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#hideshow').click(function(){
    $('#content').toggle('show');
  });
});
</script>

和HTML

<div id='content'>Hello World</div>
<input type='button' id='hideshow' value='hide/show'>

-1

您可以使用以下内容:

mydiv.style.display === 'block' = (mydiv.style.display === 'block' ? 'none' : 'block');

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.