首先,我想提一下我对 Internet Explorer 的绝对仇恨以及它给我带来的悲痛。
好的,所以我正在为客户网站使用 Coda 滑块,位于:www.onlineuticacollege.com/david
这是我对 Coda Slider 的声明。
<script src="tabbed-bottom-nav/js/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="tabbed-bottom-nav/js/jquery.easing.1.3.js" type="text/javascript"></script>
<script src="tabbed-bottom-nav/js/jquery.coda-slider-2.0.js" type="text/javascript"></script>
<script type="text/javascript">
$().ready(function() {
$('div#coda-slider-1').codaSlider({
dynamicArrows: false,
autoHeight: false
});
});
</script>
我实际的 coda 滑块选项卡太大而无法放入帖子中,所以这里有一个指向它的 pastebin 的链接:http: //pastebin.com/m6f250b9d
但这里是总体布局:
<div class="panel"><!--Begin Contact Us: panel-->
<div class="panel-wrapper">
<h2 class="title">Tab Name</h2>
<p>Some text goes here</p>
<p>More text here.</p>
<div class="panelNavigation">
<a class="xtrig left" href="#4" rel="coda-slider-1" title="Go To Previous">« Previous</a>
<a class="center" href="contact-us/contact.asp" title="Learn More">Learn More</a>
<a class="xtrig right" href="#1" rel="coda-slider-1" title="Go To Next">Next »</a>
</div>
</div>
</div><!--End Contact Us: panel-->
现在,所有这些有时在 IE 6,7 中都可以正常工作,除非您在选项卡之间切换得非常快,其他时候切换到第一个选项卡时它会完全崩溃......
非常感谢任何帮助或建议。
ps 我讨厌互联网浏览器...
[编辑] 我已经让它在 IE 7 上完美运行......现在是 IE 6。