.load无法在IE8中运行 - 图像

时间:2014-01-24 08:31:40

标签: jquery css internet-explorer-8

您好我在IE8中使我的jQuery工作有问题。我在jQuery中不是那么好,但我想我可能已经解决了这个问题..

问题是,当您点击产品时,您应该看到产品的更大图片,但我认为它不会在IE8中加载图像。

这是我的jQuery:

<script type='text/javascript'>
    $(document).ready(function(){
        $.ajaxSetup({cache:false});
        $("a.slidein").click(function(){
            var post_url = $(this).attr("href");
            var post_id = $(this).attr("rel");
            $("#post").html("<div style='width:100%; text-align:center;'><h2>LOADING...</h2></div>");

            $("#post").load(post_url);

            window.location.hash = post_id;

            return false;
        });
    });
</script>

这是网站:

http://kangaroos.dk.web2.redhost.dk/categories/shoes/

谢谢:)

1 个答案:

答案 0 :(得分:0)

可能与jQuery load() doesn't work in IE8 & 7中的问题相同 看起来您的标记已损坏 - 布局网格中的每个产品都嵌套在前一个产品中,缺少的结束标记可能会破坏IE中的内容。