
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<script src="jquery-3.5.1.min.js" type="text/javascript" charset="utf-8"></script>
<style type="text/css">
#box1 {
background-color: yellow;
height: 200px;
width: 200px;
}
#box2 {
background-color: red;
height: 100px;
width: 100px;
position: relative;
margin-top: 50px;
left: 50px;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
// 只能获取不能设置
$("#o-left-set").click(function() {
$("#box2").offset().left = 30;
});
// 距离页面最左侧的距离 和有没有定位没有关系
$("#o-left-get").click(function() {
$("#p1").text("offset().left获取" + $("#box2").offset().left);
});
$("#p-left-get").click(function() {
$("#p2").text("position().left获取" + $("#box2").position().left);
});
$("#o-top-get").click(function() {
$("#p3").text("offset().top获取" + $("#box2").offset().top);
});
$("#p-top-get").click(function() {
$("#p4").text("position().top获取" + $("#box2").position().top);
});
});
</script>
</head>
<body>
<button type="button" id="o-left-set">offset().left设置</button>
<button type="button" id="o-left-get">offset().left获取</button>
<button type="button" id="p-left-get">position().left获取</button>
<button type="button" id="o-top-get">offset().top获取</button>
<button type="button" id="p-top-get">position().top获取</button>
<div id="box1">
<div id="box2">
</div>
</div>
<p id="p1"></p>
<p id="p2"></p>
<p id="p3"></p>
<p id="p4"></p>
</body>
</html>

【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!