我想在单击按钮时触发 AJAX 请求,但我无法在后端触发它。
索引.php:
<html>
<head>
<script type="text/javascript">
var req = new XMLHttpRequest();
function send1()
{
req.open("GET", "process.php?q=hello", true);
req.send();
alert(req.responseText);
}
</script>
</head>
<button onclick=send1()>send</button>
</html>
进程.php:
<?php
$new= $_GET['q'];
echo $new;
?>
这应该在警报框中给我“你好”,为什么不是?