解決$ is not defined 的幾種方法
阿新 • • 發佈:2018-12-12
$ is not defined ,有以下幾種可能:
1.沒有匯入jQuery的jar包 2.jQuery的jar包放進了WEB-INF裡,jQuery的jar包最好放在WebContent下,跟WEB-INF同級 3.匯入jQuery的路徑名沒有寫對 4.jQuery沒有包含js 錯誤的例項:
<script type="text/javascript"> $(function(){ }); </script> <script type="text/javascript" src="/structs2_day01_atm/js/jquery-1.11.3.js"></script>
正確的例項:
<script type="text/javascript" src="/structs2_day01_atm/js/jquery-1.11.3.js"></script>
<script type="text/javascript">
$(function(){
});
</script>
5.在WEB-INF下的JSP匯入JQuery的路徑要用絕對路徑,不能用相對路徑,如:
<script type="text/javascript" src="/structs2_day01_atm/js/jquery-1.11.3.js"></script>
希望以上這些建議能對才學習的jQuery的同學有些幫助,本人自己也在努力學習中,相信自己,在學習JAVA的路上走得更遠!