我正在Ubuntu平台中使用jquery,javascript,php。在页面中,我通过jquery发送一个ajax请求到php文件并获取响应文本。该程序已在Windows-(Wamp)平台和联机环境中成功运行。但是在Ubuntu中,我遇到了JavaScript错误。代码如下…
url = "index.php"; $.get(url,{ 'action': 'Loan', }, function(responseText){ alert(responseText); }, "html" );
在Ubuntu中,我收到此错误, “ Uncaught ReferenceError:$未定义” 。该错误显示在$ .get行。在脚本标签中,我也包含了jQuery库文件。我不知道为什么这是错误。请解决我的问题。提前致谢。
$ is not defined 在JQuery上表示未加载JQuery库。
$ is not defined
发生这种情况的原因可能很多,例如
我建议您使用Google的JQuery。
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"> </script>