我正在制作一个网络应用程序。在我的 Web 应用程序中,我想将默认光标更改为自定义光标。为此,我在我的 XHTML 页面的 head 元素中应用了以下代码。
<html>
<head>
<style type="text/css">
body{
cursor: url('images/normal.ani')
}
</style>
</head>
<body>
<p> Hello World</p>
</body>
现在,此代码工作正常,并将默认光标更改为我在 Internet Explorer 7.0 中的自定义光标。但是相同的代码在 Mozilla Firefox (15.0.1) 和 Google Chrome(21.0) 中不起作用。请帮帮我....提前谢谢你