简体   繁体   English

IE7 CSS不一致

[英]IE7 CSS inconsistency

{link removed} {链接已删除}

The purple links across the bottom of this gallery do not appear at all in IE7 nor is the text clickable. 该库底部的紫色链接根本不会在IE7中显示,也无法单击文本。

I have exhausted Firebug and Google, any ideas would be appreciated :) 我已经用尽了Firebug和Google,所有想法都将不胜感激:)

As mentioned by Guffa , you have forgotten the closing anchor tags when generating your slider navigation in the jQuery. Guffa所述 ,在jQuery中生成滑块导航时,您已经忘记了闭合锚标记。

You'll need to tend to your scripts.js file. 您需要使用scripts.js文件。 In particular, on line 23: 特别是在第23行:

 $('#slide-nav')
    .append('<a id="slide-link-'+i+'" href="#" 
     onclick="slider.slide('+i+'); return false;" 
     onfocus="this.blur();">'+(i+1)+'');

Add the closing </a> 添加结尾</a>

 $('#slide-nav')
    .append('<a id="slide-link-'+i+'" href="#" 
     onclick="slider.slide('+i+'); return false;" 
     onfocus="this.blur();">'+(i+1)+'</a>');

您忘记了链接的</a>结束标记。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM