您没有以正确的方式使用它,必须使用最新的 jquery 在准备好的文档上初始化该函数。
http://jsfiddle.net/n29up/1/
这是jQuery
代码-以这种方式使用jquery:
但请确保添加最新的 jquery 插件
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js' type='text/javascript'></script>
<script type='text/javascript'>
$(function(){
$.fn.center = function () {
this.css("position","absolute");
this.css("top", ( $(window).height() - this.height() ) / 2 + "px");
this.css("left", ( $(window).width() - this.width() ) / 2 + "px");
return this;
}
$(".box").center(); // on page load div will be entered
$(window).resize(function(){ // whatever the screen size this
$(".box").center(); // this will make it center when
}); // window resize happens
});
</script>
你的小updated css
:
.container {
height: 100%;
width: 100%;
background: #eee;
position: absolute;
}
.box {
height: auto;
width: 70%;
background: gray;
position: absolute;
margin: 0;
left:0;
top:0;
}