私はこれをいじりましたが、進歩も運もまったくありませんでした。.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>