各位大神,这段js兼容ie 但不能在chrome和firefox中正常显示 5
就是这句动态光标引用无效果$('.theme-popover').css({cursor:"url(images/---------000000000.ani),auto...
就是这句动态光标引用无效果 $('.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);})}) 展开
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);})}) 展开
2个回答
展开全部
您好!很高兴为您答疑。
<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中的文本框并提交即可测试。
如果对我们的回答存在任何疑问,欢迎继续问询。
<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中的文本框并提交即可测试。
如果对我们的回答存在任何疑问,欢迎继续问询。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询