注意:当前版本jquery-easyui-1.8.6
(1)第1步:重新获得最新数据(js函数中)
$('#dg').datagrid({
url:"/project0001/searchKey?searchKeyValue="+searchKeyValue
})
(2)第2步:重新载入数据到datagrid(js函数中)
$("#dg").datagrid('reload');
(3)第3步:html页面调用
<a href="#" class="easyui-linkbutton" iconCls="icon-search" onclick="searchNamePinyin()">搜索患者</a>
补充注意事项:
输入采用textbox方式获取数据
var searchKeyValue=$('#patientPinyinInput').textbox('getValue').toString();
获取数据后要验证格式
//如果不只是字母给出提示并返回即可
var Regx = /^[A-Za-z]*$/;
if (!Regx.test(searchKeyValue)) {
alert("提示:仅可以输入姓名缩写的字母!");
return;
}
获取数据后要验证有无
if(searchKeyValue!=""){//有关键字就搜索