我正在写一个游戏,需要在 Firefox 中捕捉鼠标移动。这是我的代码:
document.onmousemove = function(e) {
mouseState.x = e.x;
mouseState.y = e.y;
}
它在 Chrome/IE 中正常工作,但在 Firefox 中似乎不起作用。当我这样做时console.log(mouseState.x)
,它会以undefined
.
我需要进行哪些修改才能让 Firefox 捕捉鼠标移动?
我正在写一个游戏,需要在 Firefox 中捕捉鼠标移动。这是我的代码:
document.onmousemove = function(e) {
mouseState.x = e.x;
mouseState.y = e.y;
}
它在 Chrome/IE 中正常工作,但在 Firefox 中似乎不起作用。当我这样做时console.log(mouseState.x)
,它会以undefined
.
我需要进行哪些修改才能让 Firefox 捕捉鼠标移动?