如何添加"显示无"选择这个" hcsticky" jquery脚本?

时间:2014-07-19 17:24:49

标签: javascript jquery css

如何修改此代码,使其隐藏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});

2 个答案:

答案 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