我正在使用一个简单的图像滑块脚本。它在大多数浏览器中都能完美运行。
当我在IE6中使用默认图像测试时,它工作正常:加载图像的默认路径是这样的网址somesitename.com/image.jpg
;这适用于IE 6和其他现代浏览器。
但是当我添加像someimages.jpg
这样的图像时,它不会在IE6中加载图像,而在其他浏览器中它可以正常工作。
我的javascript首先支持一些URL路径,然后支持图像路径吗?
以下代码是我正在编辑图像路径的部分......
<script type="text/javascript">
var mygallery=new simpleGallery({
wrapperid: "simplegallery1", //ID of main gallery container,
dimensions: [300,250], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
imagearray: [
["images/img-2.jpg", "#", "_new", "There's nothing like a nice swim in the Summer."],
["images/img-1.jpg", "#", "", ""],
["images/r-.jpg", "", "", "Eat your fruits, it's good for you!"],
["images/inside-image1.jpg", "", "", ""]
],
autoplay: [true, 2500, 5], //[auto_play_boolean, delay_btw_slide_millisec, cycles_before_stopping_int]
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
oninit:function(){ //event that fires when gallery has initialized/ ready to run
//Keyword "this": references current gallery instance (ie: try this.navigate("play/pause"))
},
onslide:function(curslide, i){ //event that fires after each slide is shown
//Keyword "this": references current gallery instance
//curslide: returns DOM reference to current slide's DIV (ie: try alert(curslide.innerHTML)
//i: integer reflecting current image within collection being shown (0=1st image, 1=2nd etc)
}
})
</script>
答案 0 :(得分:0)
您的someimages.jpg应该位于运行图像滑块代码的同一目录中,或者提供someimages.jpg的完整路径
答案 1 :(得分:0)
我假设您正在使用的SimpleGallery
脚本就是这个:http://www.dynamicdrive.com/dynamicindex4/simplegallery.htm(我想这就是那个,因为您给出的代码示例与该页面上的代码示例完全相同)。
如果是这样,请注意,该页面顶部标明了脚本支持的浏览器:“FF1 + IE7 + Opr9 +”。
换句话说,这个脚本不支持IE6。
您可能能够解决它,但它可能涉及黑客攻击脚本本身的代码。可能不值得努力。
值得指出的是,这个脚本不是jQuery插件。你已经把jQuery作为你的标签之一,所以我假设你的网站上有jQuery。如果是这样,肯定有其他滑块脚本可用,它们支持IE6。我建议你最好的办法就是试试其中一个。
最后,一个大问题:你真的需要支持IE6吗?如果你在中国,那么答案可能是肯定的,否则答案应该是“不”。 IE6的使用率目前已下降到使用中的浏览器的0.3%左右,并且每个月都在下降,即使这样,0.3%的很多企业也将在不久的将来被迫升级,当时对IE6(和WinXP)的官方支持结束完全。