我正在使用jQuery Colorbox到一个页面( index.html )来从位于同一目录的单独页面( content.html )加载DIV内容。
工作最新的Firefox,Chrome和IE10 但它无法在IE8上运行
你能帮我弄清楚代码有什么问题,或者为什么Colorbox的内容根本没有在IE8上加载?
我尝试使用内联,但只有在DIV位于同一页面内并且无法使用单独页面上的DIV时,它才会起作用。
谢谢!
的index.html
$(document).ready(function(){
$(".link").colorbox({href: function(){ return $(this).attr('href') + " #showbox";}
});
<a href="content.html#showbox" class="link">Show the box</a>
content.html
<div id="showbox">
<p>Voila!</p>
</div>