8

我将鼠标放在更改光标的 html 元素上。现在,如果用户在仍然按下鼠标按钮的同时按下一个键,我将另一个光标分配给该元素。这在 Mozilla 上运行得非常好,它会立即更改光标,但不能在 chrome 中。在 chrome 中,我需要将光标移动至少一个像素才能使新光标可见。请注意,这仅在按下鼠标按钮时发生。如果没有,光标会根据需要立即切换。知道如何正确解决这个问题吗?

更新:我刚刚发现这似乎是 WebKit 中的一个错误: https ://bugs.webkit.org/show_bug.cgi?id=53341

但无论如何,任何想法让它仍然工作,因为还没有解决办法吗?

这是错误行为的示例:带有此代码的JSFiddle 示例:

html:

<div id="test1" style="background:blue;width:200px;height:200px;color:white">Case #1 -   cursor not changing for mousedown before moving it (Press mouse - nothing happens. Then hold mouse and move)</div>

<div id="test2" style="background:red;width:200px;height:200px;color:white">Case #2 - cursor not changing for mousedown before moving it when pressing a key (Press mouse, then click any key - Nothing happens. Then hold mouse and move)</div>

js:

var el1 = document.getElementById("test1");
var el2 = document.getElementById("test2");

el1.addEventListener("mousedown", function() {
    el1.style.cursor = "move";
});

document.addEventListener("keydown", function() {
    el2.style.cursor = "move";
});
4

1 回答 1

1

这在 chrome 中为我工作,无需移动鼠标:

var el1 = document.getElementById("test1");
var el2 = document.getElementById("test2");

el1.addEventListener("mousedown", function() {
    el1.className += ' cursormove';  
});
document.addEventListener("keydown", function() {
    el1.style.cursor = "pointer";
});


.cursormove {cursor:move;}

http://jsfiddle.net/ntdap5hf/4/

还是我错过了什么?

于 2016-12-30T12:50:20.933 回答