我想像这样传递以下变量:
var $headerHeight = jQuery("#header").outerHeight() - jQuery("#header .main-menu").outerHeight();
jQuery(this).find('nav').attr('style', 'margin-top:' + $headerHeight + '!important');
它显然是用错误的语法使用的;我只是不知道如何正确使用它。jQuery“.css”函数不是一个选项,因为它必须有“!important”声明。我怎样才能通过$headerHeight
上面的例子?