Posted in Javascript onFebruary 07, 2017
本文实例讲述了jQuery简单获取DIV和A标签元素位置的方法。分享给大家供大家参考,具体如下:
一、获取DIV的位置
var top = jquery("#div_id").offset().top; //获取div的居上位置 var left = jquery("#div_id").offset().left; //获取div的居左位置 var height = jquery("#div_id").height(); //获取div的高度 var width = jquery("#div_id").width(); //获取div的宽度 jquery("#div_id").css({'top':top,'left':left,'height':height,'width':width}); //设置DIV的css属性
二、获取A标签的位置
<a href="http://localhost/#" rel="external nofollow" onclick="javascript:get_a(this,1)">获取A标签的位置</a> <script language="javascript"> function get_a(thisObj,param){ var top = jquery(thisObj).offset().top; var left = jquery(thisObj).offset().left; var height = jquery(thisObj).height(); var width = jquery(thisObj).width(); } </script>
希望本文所述对大家jQuery程序设计有所帮助。
jQuery简单获取DIV和A标签元素位置的方法
- Author -
风起从容声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@