gpt4 book ai didi

css - 如果窗口未聚焦,如何在不需要移动鼠标的情况下更改光标

转载 作者:行者123 更新时间:2023-11-28 10:21:17 24 4
gpt4 key购买 nike

出于某种原因,如果窗口未获得焦点,则光标不会更改。移动时,鼠标会正确更新。这种情况至少出现在 IE11 和 Chrome 中,但不会出现在 FF 中。

有没有办法解决/解决该问题,或者这可能是预期的行为?

这里是一些小的测试代码:

var cursors = ['default','text','no-drop','progress','all-scroll'];
var cursor = 0;
var body = document.getElementsByTagName('body')[0];
setInterval(function(){
cursor = (cursor +1 ) % cursors.length;
body.innerText = cursors[cursor];
body.style.cursor = cursors[cursor];
}, 1000);

http://jsfiddle.net/4DTpp/

最佳答案

这是预期的行为。因为如果浏览器允许这样做,就会出现安全问题,如前所述here .

关于css - 如果窗口未聚焦,如何在不需要移动鼠标的情况下更改光标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23991217/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com