本文介绍了jQuery css min-height的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
简单..我遇到语法错误。 $('#container')。css('min-height','360');
未设置规则,但 $ '#container')。css('height','360');
会。
Simple.. I'm running into a syntax error. $('#container').css('min-height', '360');
doesn't set a rule, but $('#container').css('height', '360');
does.
帮助?
推荐答案
首先尝试:
$('#container').css('min-height', '360px');
否则请尝试
$('#container').attr('style','min-height:360px;other-styles');
这篇关于jQuery css min-height的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!