当前位置导航:炫浪网>>网络学院>>网页制作>>JavaScript教程

jQuery Div层在页面内默认绝对居中

代码

 程序代码
<script type="text/javascript">
$(document).ready(function() {
//Tips: jQuery Div层在页面内默认绝对居中
//By 逸品天空Web开发代码站 http://code.dlstu.cn/
$("#contentwrap").each(function(i,o){
         $(o).CSS("left",(($(document).width())/2-(parseInt($(o).width())/2))+"px");
         $(o).css("top",(($(document).height())/2-(parseInt($(o).height())/2))+"px");
        })
});
</script>

层:

 程序代码
<div id="contentwrap"></div>


注:jQuery可以引自Google API,加载速度、缓存都很不错,得益于Google的分布式网络,不放演示了,PjBlog的UBB运行代码能力有限~~:
 程序代码
<script type="text/Javascript" src="http://Ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script>

相关内容
赞助商链接