- 注册时间
- 2016-4-26
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 133
- 精华
- 0
- 帖子
- 31
|
function check(){
var aac001 = mini.getbyName("aac001").getValue().trim();
$.ajax({
url: "${pageContext.request.contextPath}/Sydyhd.do?method=checkSydy&id="+aac001,
//async:false,
cache: false,
success: function (text) {
var o = mini.decode(text);
if(o.flag==undefined || o.flag=="" ||o.flag==null ||o.flag=="null"){
search();
form.setData(o);
}else{
alert(o.flag);
}
}
});
}
///计算失业金额
function onCount(){
var aac01 = mini.getbyName("aac001").getValue().trim();
$.ajax({
url: "${pageContext.request.contextPath}/Sydyhd.do?method=CountSydy&aac001="+aac001,
cache: false,
success: function (text) {
var o = mini.decode(text);
if(o.flag==undefined || o.flag=="" ||o.flag==null ||o.flag=="null"){
form.setData();
}else{
alert(o.flag);
}
});
}
一个JSP页面,不可以写两个相似的方法吗?
|
|