欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ajax 自动完成下拉框 自动提示位置问题

程序员文章站 2022-06-22 12:48:47
复制代码 代码如下:            func...
复制代码 代码如下:

            function divposition(){
                var clx,cly;
                clx=event.clientx;
                cly = event.clienty;
                objouter.style.top    = clx+10;
                objouter.style.left    = cly+20; 
                objouter.style.width= getabsolutewidth(objinput)
            }

问题出在
                objouter.style.top    = clx+10;
                objouter.style.left    = cly+20; 
                objouter.style.width= getabsolutewidth(objinput);
如果改成getabsolutetop(objinput);
getabsoluteleft(objinput);
在表格里的文本框输入东东就死ie了
但我不知道怎么改


" } } function chageselection(isup){ if (objouter.style.display=='none'){ objouter.style.display=''; }else{ if (isup) selectedindex++ else selectedindex-- } var maxindex = objouter.children.length-1; if (selectedindexmaxindex) {selectedindex=maxindex} for (inttmp=0;inttmp