zoukankan      html  css  js  c++  java
  • JQuery获得绝对,相对位置的坐标方法

    获取页面某一元素的绝对X,Y坐标,可以用offset()方法:(body属性设置margin :0;padding:0;)
    var X = $('#DivID').offset().top;
    var Y = $('#DivID').offset().left;

    获取相对(父元素)位置:
    var X = $('#DivID').position().top;
    var Y = $('#DivID').position().left;



    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>java Test</title>
    </head>
    <style type="text/css">
    <!--
    body,div { margin:0; padding:0;}
    -->
    </style>
    <script type="text/javascript" src="js/jquery.js"></script>

    <body>
    <div style="background:#ccc;height:300px;" onclick=""></div>
    <div style="position:relative;">
    <div style=" position:absolute;left:50px; top:50px;" id="DivID"></div>
    </div>
    <script type="text/javascript">
    var X = $('#DivID').offset().top;
    var Y = $('#DivID').offset().left;
    document.write(X+"<br />");
    document.write(Y+"<br />");
    //获取相对(父元素)位置:
    var C = $('#DivID').position().top;
    var D = $('#DivID').position().left;
    document.write(C+"<br />");
    document.write(D);
    </script>
    </body>
    </html>

    没有目标的人都只在帮有目标的人完成目标

  • 相关阅读:
    关于 js 下载PDF文件时
    vue3.0 学习
    iOS
    bootstrap treeview
    SVN版本管理
    js框架
    正则表达式
    如何让安卓手机在电脑上同步显示(MX4 Pro为例)
    mysql 中文乱码
    ADO.NET 数据库连接池大小
  • 原文地址:https://www.cnblogs.com/tweet/p/1665696.html
Copyright © 2011-2022 走看看