jquery边栏不起作用

时间:2017-05-22 20:36:37

标签: jquery sidebar margin-left

我有两个侧边栏,左右和中间框。 如果两个侧边栏都使用margin-left滑出:“0”和margin-right:“0”则中心框变为全宽。

我写了jquery if语句,并且没有工作,我错过了。

$(document).ready(function(){
        if ($(".sidebar-nav").css("marginLeft")=='0px' && (".sidebar-nav-right").css("marginRightt")=='0px') {
        $(".center-box").css("margin-right", "0"); 
        $(".center-box").css("margin-left", "0"); 
    } else {
        $(".center-box").css("background" , "red"); 
    }
}); 

0 个答案:

没有答案