我想让 jqgrid 动态化。所以我有一个变量,即
<script type="text/javascript">
$('#ok').click(function(){
var Str='jQuery("#list").jqGrid({ url:'server.php', datatype: "json", colNames:['...'], colModel:[ {...}], rowNum:10, rowList:[10,20,30], pager: '#pager2', sortname: 'id', viewrecords: true, sortorder: "desc", caption:"JSON Example" });'
});
</script>
<html>
<table id="list"></table>
<div id="pager"></div>
</html>
如何发送 jqgrid 的请求?