JS
$(function(){ //在页面载入时调用
$(window).resize();
})
$(window).resize(function(){
$(".box").css({
position:"absolute",
left:($(window).width()-$(".box").outerWidth())/2,
top:($(window).height()-$(".box").outerHeight())/2
});
})
HTML
<div class="box"></box>
CSS
随便设,哈哈哈哈