我已經擺弄這個,絕對沒有進展或運氣。如果我拿出.ajax,它可以正常工作,但是.ajax什麼都不會觸發,甚至沒有隨機測試警報。你能看到我做錯了嗎?我試圖遵循Jquery文檔。 PHP的作品。Jquery,Onclick和Ajax
<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>
更改錯誤時'chatroomid:=「''to'chatroomid:'<?php echo $ chatroomid; ?>''所以減去'=' –
2013-02-27 07:57:21