$.getJSON请求
Posted JLCUI
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$.getJSON请求相关的知识,希望对你有一定的参考价值。
function passCount(){
var url = "<%=request.getContextPath()%>/customer/selectpassCountS";
$.getJSON(url, null, function(res) {
res=eval(res);
if(res.result){
$("#passCount").text(res.result);
}
});
}
function passCountPage(){
$("#dg").datagrid("options").queryParams={
‘count‘ :1
}
$("#count").val(1);
$(‘#dg‘).datagrid(‘load‘);
}
function saveCancel(rowIndex)
{ //获取列表行数据 rowIndex应该是第几行标记
var row = $(‘#dg‘).datagrid(‘getData‘).rows[rowIndex];
}
以上是关于$.getJSON请求的主要内容,如果未能解决你的问题,请参考以下文章