自用jquery的div定位
//firefox的定位必须加 "px"=================================
function divfixed2(r,name){
var sug=document.getElementById(name)
sug.style.left=getPosition(r).x+"px";
sug.style.top=getPosition(r).y+r.offsetHeight+"px";
sug.style.position="absolute";
sug.style.visibility="visible";
jQuery(sug).slideDown("normal");
}
//获得指定元素的绝对坐标=============
function getPosition(el)
{
for (var lx=0,ly=0;el!=null;lx+=el.offsetLeft,ly+=el.offsetTop,el=el.offsetParent);
return {x:lx,y:ly}
}