程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> j uery ajax-jquery 報錯提示有未定義

j uery ajax-jquery 報錯提示有未定義

編輯:編程綜合問答
jquery 報錯提示有未定義

java程序,目的是:遍歷Table中的Checkbox,如果被check了,則調用後台FileListServlet中的某個action

初步涉及,寫了如下腳本,請問為什麼一直報錯:Uncaught ReferenceError: $ is not defined

$("#btnExecute").click(function(){ $("#tbFileList").find(":checkbox:checked").each(function(){ alert('a'); var tablerow = $(this).parent("tr"); var filename = tablerow.find("[name='fName']").val(); var filepath= tablerow.find("[name='fPath']").val(); var batpath="d:\\2.bat"; $.ajax({ type : "POST", contentType : "application/json", url : "FileListServlet?filename=" + filename + "&filepath=" + filepath + "&batpath=" + batpath + "&action=testcase" , dataType : 'json', }); }) });


File Name File Path ${filePro.fName} ${filePro.fPath}
 <div>
      <input type="button" id="btnExecute" value="Execute" ></div>


最佳回答:


沒有引入jquery文件或者路徑不對

 <script src="http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js"></script>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved