我正在使用Ubuntu Linux,Apache 2和jQuery文件格式来了解get方法的工作原理。但是我收到以下错误: ReferenceError:$未定义。 我的问题是如何加载jquery。 jquery.js,index.php和process.php放在同一文件夹的根目录中。 我的index.php文件的代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>myInfo</title>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<script type="text/javascript">
//jquery part to sent and recieve data and print it
function jqget(){
var get = $.get("localhost:8080/myInfo/process.php",
{name : "ESTRAGON"},
function (data){console.log(data);
});
}
jqget();
</script>
</body>
</html>
答案 0 :(得分:1)
似乎jQuery的路径不正确。尝试使用CDN:
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>myInfo</title>
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
</head>
<body>
<script type="text/javascript">
//jquery part to sent and recieve data and print it
function jqget(){
var get = $.get("localhost:8080/myInfo/process.php",
{name : "ESTRAGON"},
function (data){console.log(data);}
);
}
jqget();
</script>
</body>
</html>
&#13;