我在我的 asp.net mvc4 项目中使用 jqGrid,在我的一个观点中,我有以下内容:
<table id="_componentGrid" cellpadding="0" cellspacing="0">
</table>
<div id="_componentPager" style="text-align: center;">
</div>
我有一个这样开头的javascript文件:
function showGrid() {
$('#_componentGrid').jqGrid({
caption: paramFromView.Caption,....
在运行时会产生错误:
The object does not accept the property or method 'jqGrid'.
如何解决这个问题?