码迷,mamicode.com
首页 > 其他好文 > 详细

bootstrap collapse 无法收回

时间:2017-08-23 00:35:27      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:this   href   cti   trap   turn   bootstrap   ==   问题   attr   

$(function () {
//修复collapse不能正常折叠的问题
$(".collapsed").click(function () {
var itemHref = $(this).attr("href");
var itemClass = $(itemHref).attr("class");
if (itemClass === "panel-collapse collapse") {
$(itemHref).attr("class", "panel-collapse collapse in").css("height", "auto");
} else {
$(itemHref).attr("class", "panel-collapse collapse").css("height", "0px");
}
return false;//停止运行bootstrap自带的函数
});
})

bootstrap collapse 无法收回

标签:this   href   cti   trap   turn   bootstrap   ==   问题   attr   

原文地址:http://www.cnblogs.com/zinan/p/7414234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!