本文介绍了如何覆盖由jquery / javascript设置的css高度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这个:
var setHeight = $(this).outerHeight();
// returns e.g. 687
$("#someElement").css({'height': $setHeight+"px !important" });
// I want to override this jquery-set height
是正确的方式...可能不是,因为它不工作。
I'm not sure this is the right way... probably not, since it's not working.
感谢您的帮助!
推荐答案
setHeight
,而不是 $ setHeight
。并且不需要!important
。
setHeight
, not $setHeight
. and the !important
is unneeded.
这篇关于如何覆盖由jquery / javascript设置的css高度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!