我想隐藏基于浏览器的游戏的光标。在比赛开始之前我不想这样做。
我在 CSS 中有这个:* { cursor: none }
. 我将如何在 JavaScript 中执行此操作?我的目标浏览器是 Chrome,只有 Chrome。
我想隐藏基于浏览器的游戏的光标。在比赛开始之前我不想这样做。
我在 CSS 中有这个:* { cursor: none }
. 我将如何在 JavaScript 中执行此操作?我的目标浏览器是 Chrome,只有 Chrome。
You can do
document.body.style.cursor='none';
A note about your CSS : it's better to avoid as much as possible the *
selector, especially when you can just set a style to the body.
<div id="nocursor"></div>
<script type="text/javascript">
document.getElementById('nocursor').style.cursor = 'none';
</script>
It still uses css, but I assume that this is what you were looking for.