- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一段代码是这样的:
<a class="btn btn-primary" role="button" data-toggle="collapse" href="#about" aria-expanded="false" aria-controls="collapseExample">About</a>
<a class="btn btn-primary" role="button" data-toggle="collapse" href="#contact" aria-expanded="false" aria-controls="collapseExample">Contact</a>
<div class="collapse" id="about">
<div class="well">
about
</div>
</div>
<div class="collapse" id="contact">
<div class="well">
contact us
</div>
</div>
当我点击这两个按钮时,会出现两个折叠框。有没有一种方法可以一次只显示一个折叠让我说如果我点击“关于”按钮“联系”折叠将关闭如果它是打开的然后如果我再次点击“联系”按钮“关于”折叠框将关闭.
谢谢。
最佳答案
我已经弄明白了,我所做的只是在 head 标签中添加了以下内容:
<script type='text/javascript' src='http://code.jquery.com/jquery-compat-git.js'></script>
<<script type='text/javascript'>//<![CDATA[
$(window).on('load', function() {
$("[data-collapse-group='myDivs']").click(function () {
var $this = $(this);
$("[data-collapse-group='myDivs']:not([data-target='" + $this.data("target") + "'])").each(function () {
$($(this).data("target")).removeClass("in").addClass('collapse');
});
});
});//]]>
</script>
关于javascript - Bootstrap Collapse Button 如何防止出现两次折叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32754600/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!