設定元素在文件中的座標

antzone發表於2017-04-09

本章節分享一段程式碼例項,它實現了設定一個div元素在document文件中座標的效果。

使用offset()方法即可實現此功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
* {
  margin:0px;
  padding:0px;
}
#box {
  width:200px;
  height:100px;
  background:#ccc;
  margin:0px auto;
  margin-top:100px;
  position:relative;
}
#antzone {
  width:50px;
  height:50px;
  background:green;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function () {
  $("#antzone").offset({
    top: 100,
    left: 200
  });
})
</script>
</head>
<body>
<div id="box">
  <div id="antzone">1</div>
</div>
</body>
</html>

關於offset()方法可以參閱jQuery offset()方法一章節。

相關文章