Css 我的自定义光标代码在IE中不起作用

Css 我的自定义光标代码在IE中不起作用,css,Css,这段代码在firefox n chrome中运行得很好,但在Internet Explorer中却不行。 请给我一些解决办法 <style> div.cursor_green { cursor: url(pncl_green.png), auto; } </style> 绿色分区 { 光标:url(pncl_green.png),自动; } 您应该将图像转换为cur格式,这样效果很好 <style> div.c

这段代码在firefox n chrome中运行得很好,但在Internet Explorer中却不行。 请给我一些解决办法

    <style>
    div.cursor_green
    {
    cursor: url(pncl_green.png), auto;
    }
   </style>

绿色分区
{
光标:url(pncl_green.png),自动;
}

您应该将图像转换为cur格式,这样效果很好

<style>
div.cursor_green
{
cursor: url(pncl_green.cur), auto;
}
</style>

绿色分区
{
光标:url(pncl_green.cur),自动;
}

将CSS与jQuery混合使用!!!谢谢你的回答。