如何修改此代码,使其隐藏ID"#gfoptions"当物品到达"顶部:45"?
jQuery(function(){
jQuery("#gformdiv").css('z-index','99999').hcSticky({noContainer:true, top:45});
jQuery(".media-modal").css('z-index','999999');
});
我尝试添加此行,但它不起作用:
jQuery("#gfoptions").css({display: none});
答案 0 :(得分:0)
如果你想关闭粘性,试试这个:
jQuery("#gformdiv").hcSticky('off');
在您的情况下您编写了错误的语法。它应该是这样的:
隐藏:
jQuery("#gfoptions").css({display:"none"});
或
jQuery("#gfoptions").hide();
显示:
jQuery("#gfoptions").css({display:"block"});
或
jQuery("#gfoptions").show();
答案 1 :(得分:0)
只需使用隐藏和显示
$( ".target" ).hide(); //adds the css style display none
$( ".target" ).show(); // removes the css style display none attribute