gpt4 book ai didi

javascript - Codepen 中的相同代码给出不同的结果

转载 作者:行者123 更新时间:2023-11-28 18:34:30 36 4
gpt4 key购买 nike

我有这支笔:https://codepen.io/dteiml/full/PNMwZo使用以下 JavaScript 代码:

$('#getWeather').on('click', function() {
navigator.geolocation.getCurrentPosition(success);

function success(pos){
// get longitude and latitude from the position object passed in
var lng = pos.coords.longitude;
var lat = pos.coords.latitude;
// and presto, we have the device's location!
console.log("test");
$('body').html('You appear to be at longitude: ' + lng + ' and latitude: ' + lat);

}

});

和 html 代码:

<button id="getWeather">
Get my location
</button>
<body>
</body>

我从一个有效的人那里 fork 了一个我自己创建的http://codepen.io/dteiml/full/aNevrE使用完全相同的代码和设置不起作用。可能是什么问题?

最佳答案

如果您检查错误控制台,它会准确解释其中的区别:

httpshttp

pen.js:3 getCurrentPosition() and watchPosition() are deprecated on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See [redacted] for more details.

(抱歉,由于链接的原因,我无法完全按照给出的答案发布答案​​。)

关于javascript - Codepen 中的相同代码给出不同的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37371727/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com