我想在我的HTML頁面上有一個簡單的按鈕,如果右鍵單擊它,點擊激活每次我的PHP腳本。 我試着用這個代碼,而無需爲那一刻的任何積極的結果:PHP驗證按鈕
//My html code
<!DOCTYPE html>
<head>
<title><?php echo $pageTitle; ?></title>
<meta charset="UTF-16" />
<link rel="stylesheet" type="text/css" media="all" href="css.css">
<style></style>
</head>
<body>
<main>
<button onclick="doTheFunction();">Run the script</button>
<script>
function doTheFunction(){
xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST","script.php",true);
xmlhttp.send();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML = this.responseText;
}
};
}
}
</script>
</main>
<footer>
<?php echo $footer; ?>
</footer>
</body>
我的PHP代碼的一部分:
echo "$result";
這是有點不清楚你期望什麼?你也沒有對你的ajax調用做任何事情。 – kabanus