我在以下代码中遇到问题。这段代码在 Firefox 中运行良好,但是当我在 chrome、internet explorer 8、opera 上尝试相同时,它无法正常工作。
以下是我的代码:
<script type="text/javascript">
$('bodyUl').ready(function(){
// checking if we are at the end of the window
$(document).scroll(function(){
if ($(window).scrollTop() == $(document).height() - $(window).height()){
loadNewData();
}
});
function loadNewData(){
alert('loadingNewData');
for (var i=0; i<20; i++){
$('ul').append($('<li>'+new Date().getTime()+'</li>'));
}
}
});
</script>
请让我知道我需要在此代码中进行哪些更改才能在所有浏览器中运行它。谢谢。