AJax技术

easyui,该如何解决

字号+ 作者:H5之家 来源:H5之家 2017-04-06 17:07 我要评论( )

easyui本帖最后由 showbo 于 2012-09-29 16:20:17 编辑 我想用easyui的日期,但是传不到ajax,/*----------执行员工添加操作-------*/functionemployeeAdd(){var

easyui
本帖最后由 showbo 于 2012-09-29 16:20:17 编辑 我想用easyui的日期,但是传不到ajax,

/*----------执行员工添加操作-------*/
function employeeAdd(){
var validateResult = true;
//easyui 表单验证
$('#table_employeeAdd input').each(function () {
if ($(this).attr('required') || $(this).attr('validType')) {
if (!$(this).validatebox('isValid')) {
//如果验证不通过,则返回false
validateResult = false;
return;
    }
}
    });
if(validateResult==false){
return;
}

$.ajax({
async : false,
cache:false,       
type: 'POST',
dataType : "json",
data : {
"employee.fchrEmployeeCode" : $("#employeeAdd_fchrEmployeeCode").val(),
"employee.fchrEmployeeName" : $("#employeeAdd_fchrEmployeeName").val(),
"employee.fchrParentDepartment" : $("#employeeAdd_fchrParentDepartment").val(),
"employee.fchrParentName" : $("#employeeAdd_fchrParentName").val(),
"employee.fdtCreateTime" : $("#employeeAdd_fdtCreateTime").val(),
"employee.fchrEmployeePhone" : $("#employeeAdd_fchrEmployeePhone").val(),
"employee.fchrEmployeeEmail" : $("#employeeAdd_fchrEmployeeEmail").val(),
"employee.fchrEmployeeAddr" : $("#employeeAdd_fchrEmployeeAddr").val()
 

},
url: root+'/ospm/employee/doEmployeeAdd.jhtml',//请求的action路径 
error: function () {//请求失败处理函数
alert('请求失败');
},success:function(data){
var messgage = "添加成功!";
 
if(data==null){//未返回任何消息表示添加成功
employeeAddReset();
//刷新列表
reloadTable();
}else if(data.errorMsg!=null){//返回异常信息
messgage = data.errorMsg;
}
$("#employeeAdd_message").html(messgage);
}
});
}



<label>入职时间:</label>
<input type="text" class="easyui-datebox" id="employeeAdd_fdtCreateTime"  ></input>
------最佳解决方法--------------------
就你那个代码没什么问题,可以那样获取的,你的获取不到是什么意思?

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • Ajax缓存和编码问题的最终解决方案

    Ajax缓存和编码问题的最终解决方案

    2017-04-04 15:03

  • form表单提交前如何验证数据不为空

    form表单提交前如何验证数据不为空

    2017-04-04 09:00

  • JSP jQuery的$.ajax方法失效的解决方法

    JSP jQuery的$.ajax方法失效的解决方法

    2017-03-30 15:04

  • Ajax是如何实现的?

    Ajax是如何实现的?

    2017-03-17 08:00

网友点评