Javascript擷取元素位置及其它

來源:互聯網
上載者:User
Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title> new document </title>
  <meta name="generator" content="editplus" />
  <meta name="author" content="" />
  <meta name="keywords" content="" />
  <meta name="description" content="" />
 </head>

 <body>
   <script>
      function GetObjPosition(obj)
      {
         var position='';
         if(obj.getBoundingClientRect)
         {
           position=obj.getBoundingClientRect();
           return '{x:'+position.left+',y:'+position.top+'}';
         }
         else if(document.getBoxObjectFor)
         {
           position=document.getBoxObjectFor(obj);
           return '{x:'+position.x+',y:'+position.y+'}';
         }
         else
         {
             var pos=[obj.offsetLeft,obj.offsetTop];
             var parent=obj.offsetParent;
             while(parent)
             {
                pos[0] += parent.offsetLeft;         
                pos[1] += parent.offsetTop;        
                parent = parent.offsetParent; 
             }
             return '{x:'+pos[0]+',y:'+pos[1]+'}';
         }
         
      }
      function tip(obj)
      {
         var pos=eval('('+GetObjPosition(obj)+')');
      }
   </script>
  <div>
  <input type="text" id="t1" name="t1" onfocus="tip(this)" />
  <input type="text" id="t2" name="t2" onfocus="tip(this)" />
  </div>
 </body>
</html>

近日在工作中,碰到這樣一個問題:
在C#中動態添加的JS代碼可以運行,但是抽取出來存放到單獨一個JS檔案中引用後,卻提示“對象不存在”的錯誤。
經過檢查:原來是所存放的JS檔案的編碼問題。更改後即可。

另一個問題:
js中的escape()或encodeURI()與c#/vbscript等服務端語言的Server.UrlEncode()結果不一致。
這是因為gb碼不是js的內建碼。需要採用c#/vbscript等編碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.