软测单独项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
476 B

setTimeout(function () {
//获取入库人员姓名、更新人员姓名
var orgStr = "";
$.ajax({
type: "post",
url: "../../ashx/ZYCommonHandler.ashx",
data: { Action: "UserName", A_PER: $("#A_PER").val(), U_PER: $("#U_PER").val() },
dataType: "json",
success: function (result) {
$("#A_PER").val(result.Data[0].A_PER_NAME);
$("#U_PER").val(result.Data[0].U_PER_NAME);
}
});
}, 1000);