jQuery .load在IE8中不起作用

时间:2012-09-24 13:58:08

标签: jquery internet-explorer-8 load

我正在使用脚本加载另一个带有post值的页面来更新SQL查询。 它适用于Safari,但在IE8中不起作用。我不知道如何解决它。 如您所见,页面全部为空,但确实包含该元素。 所以我假设.load函数有问题。

link:http://tamara.gwst.nl/infiniteScroll/index.php

的index.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Web Gallery | Infinite Scroll</title>
<link rel="stylesheet" href="style.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/jquery.infinitescroll.js"></script>
</head>
<body>

<?php include('includes/connect.php'); ?>   

<div id="content"></div>
</body>
</html>

main.js

$("document").ready(function(){

    $("#content").load("scroll.php", {limit: 5});

    var counter = 5;

    $(window).scroll(function(){

        if($(window).scrollTop() + 1 > $(document).height() - $(window).height() ){     

                counter = counter + 5;

                $("#content").load("scroll.php", {limit: counter});


        }
    });

});

scroll.php

<? $limit = $_POST['limit']; ?>

<? 
include('includes/connect.php');
$sql = "SELECT name FROM scroll_images LIMIT $limit";
echo "</div>";

$result = mysql_query($sql);

while($row = mysql_fetch_array($result)){
    echo "<div class='post'><img src='img/".$row['name']. ".jpg' /></div>";
}

?>

2 个答案:

答案 0 :(得分:1)

不确定是否是您的错误的原因,但

$("document").ready(function(){ ... }

应该是

$(document).ready(function(){ ... }

您希望JS变量document不是字符串"document"

答案 1 :(得分:0)

这可能是一个缓存问题。

尝试,

$("#content").load("scroll.php?" +Math.random()*99999, {limit: counter});