我目前正在进行聊天系统实验,但遇到了问题。
这是我的代码:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>
function getUpdates() {
$('#updates').load('chatlister.php', function() {window.alert('Load was performed.');});
}
setTimeout(getUpdates(), 1000);
</script>
</head>
<body>
<p>The updates are:</p>
<div id="updates"></div>
</body>
出于某种原因,jQuery.load()
函数没有将任何内容加载到<div>
页面的“更新”部分。我检查chatlister.php
并确保它有输出,并且我还确保这两个文件在同一个目录中。我对 jQuery 很陌生,所以请多多包涵。我错过了什么?