-2
嗨,大家好我是ajax的新手我有一個php文件和一個ajax文件。我只是想從AJAX檢測PHP文件,所以我在阿賈克斯發送請求像不能在ajax中檢測文件
<!DOCTYPE html>
<html>
<head>
<script>
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp=new XMLHttpRequest();
}
else
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
alert(xmlhttp.responseText);
} else {
console.log('file not fetched');
}
xmlhttp.open("GET","first.php?m=babe",true);
xmlhttp.send();
}
}
loadXMLDoc();
</script>
</head>
<body>
</body>
</html>
我的PHP文件
<?php
include("ajax.html");
$p = $_REQUEST['m'];
if($p == 'babe') {
echo true;
}
當我在本地主機上運行ajax.html它不在窗口或控制檯中向我顯示任何消息。
你們能告訴我這是爲什麼嗎?
thanx的幫助
而你得到任何錯誤在控制檯中? – adeneo
「網絡」選項卡如何?此外,文件位於何處,以及您的網址是什麼樣的? –
@adeneo控制檯是空的' –