在UI中使用Jquery&ŧ039;的new Position函数将任何内容居中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在UI中使用Jquery&ŧ039;的new Position函数将任何内容居中相关的知识,希望对你有一定的参考价值。
Markup: <script src="http://jquery-ui.googlecode.com/svn/trunk/jquery-1.4.2.js"></script> <script src="http://jquery-ui.googlecode.com/svn/trunk/ui/jquery.ui.position.js"></script> <div id="foo"> My centered foo box </div> <script> $('#foo') .css({ top: 0, left: 0 }) .position({ my: 'center center', at: 'center center', collision: 'fit', of: window, using: function(pos) { var topOffset = $(this).css(pos).offset().top; if (topOffset < 0) { $(this).css('top', pos.top - topOffset); } } }); </script>
以上是关于在UI中使用Jquery&ŧ039;的new Position函数将任何内容居中的主要内容,如果未能解决你的问题,请参考以下文章
使用livequery将jquery事件绑定到ajax&ŧ039;d内容