qq_20898003 2016-04-29 02:47 采纳率: 0%
浏览 1206

js图片轮番IE兼容性问题

var t = n =0, count;
$(document).ready(function(){
count=$("#banner_list a").length;
counts=$("#banner_bg a").length;
$("#banner_bg a:not(:first-child)").hide();
$("#banner_list a:not(:first-child)").hide();
$("#banner_info").click(function(){
window.open($("#banner_list a:first-child").attr('href'), "_self");
window.open($("#banner_bg a:first-child").attr('href'), "_self");
});
$("#banner_info li").click(function() {
var i = $(this).text() -1;//获取Li元素内的值,即1,2,3,4
n = i;
if (i >= count) return;
$("#banner_info").unbind().click(function(){
window.open($("#banner_list a").eq(i).attr('href'), "_self");
window.open($("#banner_bg a").eq(i).attr('href'), "_self");
});
$("#banner_bg a").filter(":visible").fadeOut(500).parent().children().eq(i).fadeIn(500);
$("#banner_list a").filter(":visible").fadeOut(500).parent().children().eq(i).fadeIn(500);
document.getElementById("banner_list").style.background="";
document.getElementById("banner_bg").style.background="";
$(this).toggleClass("curr");
$(this).siblings().removeAttr("class");
});
t = setInterval("showAuto()", 4000);
$("#banner").hover(function(){clearInterval(t)}, function(){t = setInterval("showAuto()", 4000);});
});

function showAuto()
 {
 n = n >=(count -1) ?0 : ++n;
 $("#banner li").eq(n).trigger('click');
 }


 这是代码,在ie下 图片自动变的时候url就http://localhost:8080//index/undefined变成404了
  • 写回答

1条回答

  • qq_20898003 2016-04-29 03:32
    关注
                    <div class="mMiddleMode_bd ymlsk_height" id="banner_info">
                        <div class="mSlider" id="banner_list">
                        <div id="newPic"></div>
    
                        </div>
                        <ul class="mSlider_nav">
                            <li class="curr">1</li>
                            <li>2</li>
                            <li>3</li>
                            <li>4</li>
                        </ul>
                    </div>
                </div>
    
                                这是html.来大神啊!!!!!!!!!!!!!!!!
    
    评论

报告相同问题?

悬赏问题

  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办