如果用户移动鼠标或按下某个键,它将重定向到另一页 这不起作用
document.onmousemove = function() {
myFunction();
};
function myFunction() {
document.location.href = 'https://example.com/login.html';
}
答案 0 :(得分:0)
您应该使用window.location
(因为document.location
是read-only)。另外,您只绑定到mousemove
,也没有绑定到keypress
:
如下更新代码:
function redirect()
{
window.location.href = 'https://example.com/login.html';
}
document.onmousemove = redirect;
document.body.onkeypress = redirect;