0

我需要通过ajax调用一个php文件。我试过以下:

<html>
<script type="text/javascript">

setInterval(function(){
test();
},3000);

function test(){     
$.ajax({
    type: "POST",
    url: "GetMachineDetail.php",
    data: "{}",
    success: function(response){
         alert("suceccess");}
    });
}

这是简单的 javascript jquery 调用......但我有一个 ajax not found 错误。

问题:我该如何解决这个问题?

4

2 回答 2

2

需要在 HTML 中包含 jquery 库。

仅仅因为使用没有库的 jquery 就会出错。

于 2013-10-26T10:11:22.917 回答
1

$是由 jQuery 库提供的(名称不佳的)函数。在尝试使用它之前,您需要在页面中包含该库。

您可以从jQuery 网站获得它(您还可以在其中找到有关如何使用第三方托管版本的说明)。

于 2013-10-26T09:51:03.277 回答