40

我想使用脚本来使用 JavaScript 在我的网站上更改鼠标指针。最好由 CSS 完成,但我的要求是可以分发给许多人以嵌入到他们网站的头部部分的脚本。通过CSS,这可以通过

html
{
    cursor: *cursorurl*
}

如何在 JavaScript 中做同样的事情?

4

5 回答 5

47

Javascript 非常擅长处理 css。

 document.body.style.cursor = *cursor-url*;
 //OR
 var elementToChange = document.getElementsByTagName("body")[0];
 elementToChange.style.cursor = "url('cursor url with protocol'), auto";

或使用 jquery:

$("html").css("cursor: url('cursor url with protocol'), auto");

除非您在图像后指定默认光标,否则Firefox将无法工作!

其他光标关键字

还要记住 IE6 只支持.cur 和 .ani 游标

如果光标没有改变:如果您相对于光标位置移动光标下的元素(例如元素拖动),您必须强制重绘元素:

// in plain js
document.getElementById('parentOfElementToBeRedrawn').style.display = 'none';
document.getElementById('parentOfElementToBeRedrawn').style.display = 'block';
// in jquery
$('#parentOfElementToBeRedrawn').hide().show(0);

working sample:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>First jQuery-Enabled Page</title>
<style type="text/css">

div {
    height: 100px;
    width: 1000px;
    background-color: red;
}

</style>
<script type="text/javascript" src="jquery-1.3.2.js"></script></head>
<body>
<div>
hello with a fancy cursor!
</div>
</body>
<script type="text/javascript">
document.getElementsByTagName("body")[0].style.cursor = "url('http://wiki-devel.sugarlabs.org/images/e/e2/Arrow.cur'), auto";


</script>
</html>
于 2010-12-30T16:22:51.300 回答
17

看看这个页面:http ://www.webcodingtech.com/javascript/change-cursor.php 。看起来您可以从样式中访问光标。此页面显示它是在整个页面上完成的,但我确信子元素也可以正常工作。

document.body.style.cursor = 'wait';
于 2010-12-30T16:23:10.720 回答
13
document.body.style.cursor = 'cursorurl';
于 2010-12-30T16:22:22.800 回答
0

做吧document.documentElement.style.cursor = "my-cursor-here"即使在没有元素的位置,这也会改变光标(不像document.body,它只适用于元素的地方)。

注意:当您的鼠标悬停在某些元素上时,这可能不起作用,例如<button>.

于 2021-12-13T02:25:13.263 回答
-1

关于@CrazyJugglerDrummer 第二种方法,它将是:

elementsToChange.style.cursor = "http://wiki-devel.sugarlabs.org/images/e/e2/Arrow.cur";
于 2010-12-30T16:45:10.023 回答