各位大神,这段js兼容ie 但不能在chrome和firefox中正常显示

就是这句动态光标引用无效果 $('.theme-popover').css({cursor:"url(images/---------000000000.ani),auto"});在chrome和firefox中无效果以下是全部源码:
jQuery(document).ready(function($) {$('.theme-login').click(function(){$('.theme-popover').css({cursor:"url(images/---------000000000.ani),auto"});$('.theme-popover-mask').fadeIn(100);$('.theme-popover').slideDown(200);})$('.theme-poptit .close').click(function(){$('.theme-popover-mask').fadeOut(100);$('.theme-popover').slideUp(200);})})

  您好!很高兴为您答疑。
  <html>
  <head>
  <script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
  <script type="text/javascript">
  $(document).ready(function(){
  $(".theme-login").click(function(){
  $('.theme-popover-mask').fadeIn(100);
  $('.theme-popover').slideDown(200);
  });
  $(".theme-poptit").click(function(){
  $('.theme-popover-mask').fadeOut(100);
  $('.theme-popover').slideUp(200);
  });
  });
  </script>
  </head>
  <body>
  <div class="theme-popover">theme-popover</div>
  <div class="theme-popover-mask">theme-popover-mask</div>
  <button class="theme-login">show</button>
  <button class="theme-poptit">hidn</button>
  </body>
  </html>
  </BODY>
  </HTML>
  因为没有您的图像资源,基于您的主体代码微调了一下,在w3c在线测试工具中可以顺利通过,建议您参考下。将这段代码贴到:http://www.w3school.com.cn/tiy/t.asp中的文本框并提交即可测试。
  如果对我们的回答存在任何疑问,欢迎继续问询。
温馨提示:内容为网友见解,仅供参考
第1个回答  2014-09-24
您好!很高兴为您答疑!

几款主流浏览器实际使用中,性能差异几乎可以忽略不计,您可以根据自己的喜好和操作习惯选择浏览器使用,火狐的优势在于使用Gecko内核,是一款开源、安全的浏览器,拥有非常强大的扩展功能,可以根据自己的需求定制浏览体验。
  您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。
相似回答