jQuery position()方法
此方法可以返回匹配元素相對於指定元素的偏移量。
它會返回一個物件,物件具有top和left屬性,分別表示縱向和橫向偏移量。
偏移量分兩種情況,一種是父級元素具有定位元素,另一種父級元素沒有定位元素。
程式碼例項:
[HTML] 純文字檢視 複製程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> *{ margin:0; padding:0; } #box{ width:300px; height:200px; background:#ccc; margin:100px; overflow:hidden; } #middle{ width:200px; height:150px; background:green; margin:20px; overflow:hidden; } #inner{ width:120px; height:80px; background:black; margin:20px; color:white } </style> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script> $(document).ready(function(){ var str=""; str=str+$("#inner").position().left+"<br/>" str=str+$("#inner").position().top; $("#inner").html(str); }); </script> </head> <body> <div id="box"> <div id="middle"> <div id="inner"></div> </div> </div> </body> </html>
inner元素的父級元素中沒有定位元素,那麼偏移量是相對於文件的。
特別說明:偏移量值是從inner元素的外邊距邊緣開始計算的。
[HTML] 純文字檢視 複製程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> *{ margin:0; padding:0; } #box{ width:300px; height:200px; background:#ccc; margin:100px; overflow:hidden; } #middle{ width:200px; height:150px; background:green; margin:20px; overflow:hidden; position:relative; } #inner{ width:120px; height:80px; background:black; margin:20px; position:relative; left:10px; top:20px; color:white; } </style> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script> $(document).ready(function(){ var str=""; str=str+$("#inner").position().left+"<br/>" str=str+$("#inner").position().top; $("#inner").html(str); }); </script> </head> <body> <div id="box"> <div id="middle"> <div id="inner"></div> </div> </div> </body> </html>
inner元素的具有定位的父級元素,那麼偏移量就以此父級元素作為參考。
相關文章
- jQuery position()jQuery
- jQuery.position()方法獲取值為0解決方案jQuery
- jQuery原始碼解析之position()jQuery原始碼
- jQuery offset()和position()用法詳解jQuery
- jQuery background-position動畫效果程式碼例項jQuery動畫
- jquery position()函式和offset()函式的區別jQuery函式
- YogaKit中 position 的使用方法
- RecyclerView滑動到指定Position的方法View
- jquery position()計算的是元素所佔據位置的座標jQuery
- position
- jQuery方法wrapAll()jQuery
- jQuery 事件方法jQuery事件
- jQuery 效果方法jQuery
- jQuery AJAX 方法jQuery
- jQuery Callback 方法jQuery
- jQuery css() 方法jQueryCSS
- jQuery replaceWith()方法jQuery
- jquery filter()方法jQueryFilter
- jQuery css()方法jQueryCSS
- CSS position:sticky與position:fixed 區別CSS
- Position定位
- css positionCSS
- jQuery 篩選方法jQuery
- jQuery HTML / CSS 方法jQueryHTMLCSS
- jQuery 遍歷方法jQuery
- jQuery 雜項方法jQuery
- jQuery 動畫 - animate() 方法jQuery動畫
- jQuery效果-animate()方法jQuery
- Jquery--工具方法jQuery
- jQuery ajax - serializeArray() 方法jQuery
- 解析position: sticky;
- position和float
- position和BFC
- CSS之positionCSS
- jquery中on方法原理分析jQuery
- jQuery Validate optional()方法jQuery
- JQuery常用方法一覽jQuery
- jQuery – AJAX load() 方法jQuery