我想在單擊圖像時將名爲john的div的內容更改爲php文件的輸出。我確定這很簡單,但我找不到適合的例子。這裏是我的代碼:使用Ajax更改div onclick的內容
function ajaxFunction(){
var ajaxRequest;
ajaxRequest = new XMLHttpRequest();
ajaxRequest.onreadystatechange = function(){
if(ajaxRequest.readyState == 4){
document.getElementById("john").innerHTML=xmlhttp.responseText;
}
}
ajaxRequest.open("GET", "test.php", true);
ajaxRequest.send(null);
}
HTML
<img class='cross' src='images/cross.png' onclick="ajaxFunction();">
<div id='john'>john</div>
test.php的
<?php echo "hello"; ?>
謝謝。很好的與'xmlhttp'搭檔,但我試過了你的代碼,它仍然沒有響應點擊。 –