12345678910111213141516171819 |
- $(function(){
- //手风琴效果
- $('body').on('click','.steps-choose',function(){
- // $(this).addClass('show').siblings('.steps-choose').removeClass('show');alert(1)
- });
-
- $(".ttd").hide();
- var tp = $(".ttd");
- var lq = $(window).height();
- $(".shut").click(function(){
- $(this).parents(".ttd").fadeOut();
- $("body").css({height :"100%",overflow:"auto"});
- });
- $(".dowClick").click(function(){
- tp.fadeIn();
- $("body").css({height : lq+"px",overflow:"hidden"});
- });
-
- })
|