IE 10 images not showing up

核能气质少年 提交于 2019-12-24 13:30:35

问题


I am currently attempting to fix up the huge amount of issues that IE10 is causing when viewing my site. here the current issue that's plaguing me is that all of my images are not showing up, at all. Hoping to get soem help here. If any one knows of a site that has a list of fixes for IE problems that would be appreciated as well.

Taking for example one of the slider I am using I have just simple img calls

<ul class="rslides" id="slider1">
    <li><img id="imgMetrics"  src="jScroller/jScrollerImages/OutlawsOfHealthBanner.png" alt="Outlaws of health guys jumping" ></li>
    <li><img id="imgMetrics"  src="jScroller/jScrollerImages/tugOfWar.png" alt="Tug of war"></li>
    <li><img id="imgMetrics"  src="jScroller/jScrollerImages/welcome.png" alt="Welcome to the family image" ></li>
</ul>

Nothing to special, however IE10 just chews it up and spits it nothing out.

EDIT:: A fellow developer friend of mine, gave me some good ideas, it looks like it's a jQuery issue (Take the module away and it works) so now to work away it that. Thanks every one. EDIT x2:: Alright so I've narrowed the problem down to my flash player, remove that call in my code and it works... so now it's just about figuring out where it's broken from there. If any one happens to see something I'd appreciate it. EDIT x3:: fixed it, ended up being a conflict with some unnecessary js.


回答1:


I add this to the head section if something does not work in IE10 but it does in other browsers.

 <meta http-equiv="X-UA-Compatible" content="IE=9"/>

Does it work in other browsers?



来源:https://stackoverflow.com/questions/17347817/ie-10-images-not-showing-up

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!