js设置 div高度和宽度
function autoHeight() { var h = $(window).height(); var w = $(window).width(); $(".login").css('height',h); $(".login").css('width',w); } $(function() { autoHeight() $(window).resize(autoHeight); })