不工作我已經使用在Mozilla和Chrome瀏覽器下面的腳本。在Mozilla中,它詢問我們是否要共享位置。但在鉻它沒有顯示任何東西。地理位置鉻
<script>
var x = document.getElementById("demo");
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
x.innerHTML = "Latitude: " + position.coords.latitude +
"<br>Longitude: " + position.coords.longitude;
}
</script>
該網站公開託管。仍然沒有工作。 –
根據我的答案,您是否正在運行HTTPS? – Sk93