<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
.div1{border:1px solid red; width:400px; height:300px;}
</style>
<script src="jquery-1.3.1.js"></script>
<script type="text/javascript">
$(function(){
var browserwidth=$(window).width();//整个浏览器的宽度
var borwserheight=$(window).height();//整个浏览器的高度
var cwinwidth=$("#center").width();//当前层的宽度
var cwinheight=$("#center").height();//当前层的高度
var left=(browserwidth-cwinwidth)/2; //使得层在浏览器的中间部位
var top=(borwserheight-cwinheight)/2;
$(".div1").css(left,left).css(top,top).show("slow");
});
</script>
</head>
<body>
<div class="div1" id="center">
</div>
</body>
这样写这个div还出现在浏览器的左上角 不动 不知道为什么?
你在$(".div1).css(left.left).css(top,top).show("slow");这句话前面加一句
$(".div1").css("position", "fixed");
css("position", "fixed");
很重要
加上css({position:"fixed",z-index:1000}
css("position", "fixed");
真的很重要