我正在使用jQuery
和AJAX
来运行PHP
功能而不刷新页面。它对我的前两个实例工作正常,但我添加了一个新实例,现在新实例一直给我以下错误
POST http://www.example.com/ajax.php 404 (Not Found)
我检查并重新检查并尝试在其他地方发现类似的错误,我感到难过。这是我的HTML
<img id="green" src="http://www.example.com/image/sign_no.jpg" onclick="runAjax(this.id)" />
<span id="blue" onclick="runAjax(this.id)">Press Here</span>
这是我的jQuery代码
<script language="javascript">
function runAjax(id) {
if (id == "green") {
if (document.getElementById("green").src == "http://www.example.com/image/sign_no.jpg") {
document.getElementById("green").src = "http://www.example.com/image/sign_yes.jpg";
$.ajax({
type: "POST",
url: "/ajax.php",
data:{action:"green_pressed",user_id:"' . $user_id . '"},
success:function(html) {
alert(id);
}
});
}
}
else if (id == "blue") {
$.ajax({
type: "POST",
url: "/ajax.php",
data:{action:"blue_pressed",run_id:"' . $run_id . '"},
success:function(html) {
alert(id);
}
});
}
}
</script>
这是ajax.php文件
if($_POST['action'] == 'green_pressed') {
print_r($_POST['user_id']);
}
if($_POST['action'] == 'blue_pressed') {
print_r($_POST['run_id']);
}
因此,当我按下green
id没有问题时,代码运行正常,但是当我按下blue
id时,我就会收到错误。任何见解?