我有以下 JS 获取用户的当前位置并显示他们的邮政编码......
(function ($, geolocation) {
if (geolocation) {
geolocation.getCurrentPosition(function (position) {
$.getJSON(
"http://ws.geonames.org/findNearestAddressJSON?callback=?",
{
lat : position.coords.latitude,
lng : position.coords.longitude
},
function (data) {
$(function () {
$('#zip').text(data.address.postalcode);
});
}
);
});
}
}(jQuery, navigator.geolocation));
请帮助 CodeReview,因为我的原始代码非常糟糕,https://codereview.stackexchange.com/questions/13481/to-use-or-not-to-use-public-variables-in-javascript/13483#comment21844_13483
HTML:
<div id="zip"></div>
...然后在 div 中显示邮政编码。
这在 Mobile Safari 和桌面 Safari 中都可以正常工作,但是一旦我添加了apple-mobile-web-app-capable
元标记,代码就会中断。
在每一步之后,我都会将代码记录到控制台,并且在常规 Safari 和 Mobile Safari 中都可以顺利运行。不过,只要我将它添加到我的主屏幕(头部带有元标记),该应用程序甚至都不会运行 JS 代码。它也没有麻烦登录到控制台,这让我想知道 WebApps 中是否允许位置服务。
如果在从主屏幕运行时重新加载页面,也会出现此问题。
有没有什么办法解决这一问题?这是个常见的问题吗?