我一直在摆弄这个,绝对没有进展或运气。如果我取出 .ajax 它可以正常工作,但使用 .ajax 不会触发任何事件,甚至不会触发随机测试警报。你能看出我做错了什么吗?我试图遵循 Jquery 文档。PHP 工作。
<script type="text/javascript">
jQuery(document).ready(function ($) { // wait until the document is ready
$('div#chatroom').click(function(){
$.ajax({
type: 'GET',
url: 'chatget.php',
data: { chatroomid: = '<?php echo $chatroomid; ?>'},
datatype: 'html',
cache: 'false',
success: function(response) {
$('#chatroom').append(response);
alert('Load was performed.');
},
error: function(){
alert('Fuuuuuuuuuuuuuu');
}
}); // End Ajax
alert('Fail');
}); // End onclick
});
</script>