在这种情况下,我可以用 "Element, class or id" 代替 "window" 吗?
Can i put an "Element, class or id" instead of "window" in this case?
$(window).resize(function(){
$('.container').css('height', $(window).height());
});
我可以获取 .container 的调整大小(更改)高度吗?
没用。
.css('height', $(".container").height());
试试这个:
.css('height',$('.container').height($(window).height()));
$(window).resize(function(){
$('.container').css('height', $(window).height());
});
我可以获取 .container 的调整大小(更改)高度吗?
没用。
.css('height', $(".container").height());
试试这个:
.css('height',$('.container').height($(window).height()));