我正在创建一个监控网站的工具。
为此,我需要使用javascript浏览器检测获取当前位置,鼠标位置和当前网址
我该怎么做?
我知道下面的代码对于获取当前位置是正确的。
var loc = navigator.geolocation.getCurrentPosition;
console.log(loc);
答案 0 :(得分:0)
.
(句点)而不是,
(逗号)getCurrentPosition
是功能,您需要调用它(使用()
)getCurrentPosition
可能必须发出网络请求才能找出结果,因此它是异步的。你必须传递一个回调函数作为它的第一个参数。这样:
function showPositionData(result) {
console.log(result);
}
navigator.geolocation.getCurrentPosition(showPositionData);