以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]如何获取经纬度信息 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=102034) |
-- 作者:菜鸟王中王 -- 发布时间:2017/6/12 11:09:00 -- [求助]如何获取经纬度信息 使用html和JS获取到了经纬度 求教 如何把这个经纬度信息写入表中: <!DOCTYPE html> <html> <meta name=\'viewport\' c> <meta http-equiv="Content-Type" c /> <p id="demo">点击这个按钮,获得您的坐标:</p> <button >试一下</button> <script> var x=document.getElementById("demo"); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPosition,showError); } else{x.innerHTML="Geolocation is not supported by this browser.";} } function showPosition(position) { x.innerHTML="Latitude: " + position.coords.latitude + "<br />Longitude: " + position.coords.longitude;
} function showError(error) { switch(error.code) { case error.PERMISSION_DENIED: x.innerHTML="User denied the request for Geolocation." break; case error.POSITION_UNAVAILABLE: x.innerHTML="Location information is unavailable." break; case error.TIMEOUT: x.innerHTML="The request to get user location timed out." break; case error.UNKNOWN_ERROR: x.innerHTML="An unknown error occurred." break; } } </script> </body> </html> 求教 谢谢
|
-- 作者:有点色 -- 发布时间:2017/6/12 11:12:00 -- 写一个ajax请求给服务器发送即可。
js里面写 var result = sendAjaxText(longitude + "|" + latitude, "test.htm","",false);
httprequest里面写
Case "test.htm" Dim 经纬度 As String = e.PlainText
Dim 经度 As Double = 经纬度.split("|")(0) Dim 纬度 As Double = 经纬度.split("|")(1)
|
-- 作者:goe12345 -- 发布时间:2018/3/26 17:15:00 -- 求教 还没看懂,能再详细说明下吗,如何把大段文字写入表中 |
-- 作者:有点甜 -- 发布时间:2018/3/26 17:21:00 -- 以下是引用goe12345在2018/3/26 17:15:00的发言:
还没看懂,能再详细说明下吗,如何把大段文字写入表中
1、你获取成功经纬度了没有?如果没有获取,参考
http://www.foxtable.com/bbs/dispbbs.asp?BoardID=2&ID=101097&skin=0
2、编写js代码,把数据提交给服务器,如
http://www.foxtable.com/mobilehelp/scr/0108.htm
|