0
我想要使用jqgrid 5.1.1,我得到這個錯誤:$('#gridMain')。jqgrid是不是一個函數。jqGrid是不是一個函數
我不知道該怎麼辦才能解決問題。
請幫助我!
這裏是我的代碼
<%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>My First Grid</title>
<link rel="stylesheet" type="text/css" media="screen" href="/jqgrid_5.1.0/css/ui.jqgrid.css" />
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="/jqgrid_5.1.0/js/jquery.jqGrid.min.js" type="text/javascript"></script>
<script src="/jqgrid_5.1.0/js/jquery-1.11.0.min.js" type="text/javascript"></script>
<script src="/jqGrid_5.1.0/js/i18n/grid.locale-kr.js" type="text/javascript"></script>
<script type="text/javascript">
\t $(document).ready(function(){
\t console.log("aa");
\t \t $('#gridMain').jqGrid({});
\t });
</script>
</head>
<body>
\t <h2>jqGrid test</h2>
<table id="gridMain"></table>
</body>
</html>
時所需的JS庫未正確安裝這通常發生。根據您的代碼,我懷疑以下路徑可能是錯誤的 - 「/jqgrid_5.1.0/js/jquery.jqGrid.min.js」 「/jqgrid_5.1.0/js/jquery-1.11.0.min .js「 另外,你爲什麼引用2個版本的jQuery庫? – ArunGeorge
此潛在重複 - http://stackoverflow.com/questions/26370345/typeerror-jqgrid-is-not-a-function-on-button-click-to-trigger-reload – ArunGeorge