复制代码 代码如下: jQuery的位置函数(offset(),innerWidth(),innerHeight(),outerWidth(),outerHeight(),scrollTop(),scrollLeft())小应用 <BR>#divShow{width:100px;height:50px;background-color:Green;display:none;} <BR>#divAd{width:100px;height:100px;background-color:Red;position:absolute;top:100px;left:100px;} <BR> <BR>//在文本框下方显示一个div,类似日历控件那样。 <BR>function showDiv(obj){ <BR>jQuery("#divShow").css("left",jQuery(obj).offset().left); <BR>jQuery("#divShow").css("top",jQuery(obj).offset().top + jQuery(obj).outerHeight()); <br><br>jQuery("#divShow").show(); <BR>} <BR>jQuery(function(){ <br><br>}); <BR>//滚动条滚动,执行下面的函数,适合做浮动广告 <BR>jQuery(this).scroll(function(){ <BR>jQuery("#divAd").css("top",100 + jQuery(document).scrollTop()); <BR>jQuery("#divAd").css("left",100 + jQuery(document).scrollLeft()); <BR>}); <BR> 2010-03-22 浮动广告 用来撑出滚动条