html ajax post提交

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html ajax post提交相关的知识,希望对你有一定的参考价值。

<from>
  <div class="form-group">
      <label >工会ID</label>
      <input class="form-control" id="parentId">
    </div>
    <div class="form-group">
      <label >用户ID</label>
      <input class="form-control" id="userId" >
    </div>
  <button  type="submit" class="btn btn-default">提交</button>
</from>
<script type="text/javascript">

  $("button").click(function(){
    var parentId = $("#parentId").val();
    var userId = $("#userId").val();

    $.post("后端url地址",
          {
            parentId:parentId,
            userId:userId,

          },
          function(data,status){
            if(status=="success" && data.status==1){
                alert(data.msg);
            }
            if(data.status==0){
                alert(data.msg);
            }
          }
         );
      });
</script>

以上是关于html ajax post提交的主要内容,如果未能解决你的问题,请参考以下文章

ajax的post提交方式和传统的post提交方式哪个更快?

解决YII提交POST表单出现400错误,以及ajax post请求时出现400问题

总是容易忘记 jquery ajax POST

表单提交(同步提交)和AJAX提交(异步提交)

ajax post 提交数据和文件

通过html表单方式提交数据(可以指定get和post)和ajax方式请求的原理是一样的吗?