控制台日志有效,但是 CSS 没有改变,为什么?重新加载时设置的 CSS 也有效,但.resize()
与 CSS 无关,为什么?
(function(){
var winH = $(window).height(),
winW = $(window).width()
$('.frame').css({
'width' : winW - 77,
'height' : winH
});
$(window).resize(function() {
$('.frame').css({
'width' : winW,
'height' : winH
});
console.log(winW);
});
})();