$("#content-container-2").css('min-height', '1000px');
$('#content-container-2').attr('style','min-height:1000px;');
两者都不起作用。但是,通过样式表设置它就可以了。当使用带有上述命令的 jquery 并使用 firebug 检查 css-properties 时,它们也根本没有显示 min-height 已设置。最后但并非最不重要的一点是,打印出:
console.log($("#content-container-2").height());
console.log($("#content-container-2").outerHeight());
console.log($("#content-container-2").innerHeight());
在所有情况下都返回 null。
有人知道这是为什么吗?