// layui.use(['carousel', 'form'], function() { // var carousel = layui.carousel, // form = layui.form, // layer = layui.layer; // //建造实例 // carousel.render({ // elem: '#test1', // width: '100%' //设置容器宽度 // , // height: '100%', // arrow: 'always' //始终显示箭头 // , // autoplay: 'false' //始终显示箭头 // //,full: 'true' //切换动画方式 // }); // }); $(document).ready(function() { $(".title-tab").bind("click", function() { $(".tab-content").hide(); $(".title-tab").removeclass("active"); $("#" + $(this).attr("name")).show(); $(this).addclass("active"); }); })