我试图通过单击一个按钮来运行 PHP 代码,但它似乎不起作用。我在 MAPM 服务器上运行它。
<html>
<head>
</head>
<div onClick="count();">Click!</div>
<script>
function count() {
var xhr;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.open('GET', 'count.php');
xhr.send();
}
</script>
</body>
</html>
在 PHP 文件 (count.php) 中,我们有以下代码:
<?php
Print "Hello, World!";
?>