js定位

Posted web瞎搞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js定位相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<title>测试定位</title>
<script type="text/javascript" src="http://api.map.baidu.com/api?v=1.4&ak=ia6HfFL660Bvh43exmH9LrI6"></script>
</head>
<body>

<script type="text/javascript" >
var geolocation = new BMap.Geolocation();
// 创建地理编码实例
var myGeo = new BMap.Geocoder();
geolocation.getCurrentPosition(function(r){
if(this.getStatus() == BMAP_STATUS_SUCCESS){
var pt = r.point;
// 根据坐标得到地址描述
myGeo.getLocation(pt, function(result){
if (result){
var addComp = result.addressComponents;
alert(addComp.province + ", " + addComp.city + ", " + addComp.district + ", " + addComp.street + ", " + addComp.streetNumber);
}
});
}
});
</script>
</body></html>




























以上是关于js定位的主要内容,如果未能解决你的问题,请参考以下文章

JS实现页面进入返回定位到具体位置

网页定位点击事件js响应函数教程(Chrome)

开学了软测的同学快来--详解selenium之JS元素定位--内附JS滚动条源码

JS-offsetParent定位父节点

基于python实现UI自动化3.2 selenium通过JS定位元素

3)js的基础语法使用以及css定位