首页 > 编程 > JavaScript > 正文

jquery提交form表单简单示例分享

2019-11-20 21:01:05
字体:
来源:转载
供稿:网友

复制代码 代码如下:

$.ajax({
  url : 'deliveryWarrant/update.do',
  data : $('#myform').serialize(),
  type : "POST",
  success : function(data) {
    var res = eval('(' + data + ')');
    if (res && res.success == true) { 
      alert(res.message);
    location.href="/form.php?godownWarrant.code="+$("#myform input[name=godownWarrant//.code]").val();
    } else {
      alert(res.message);
    }
  }
});

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表