欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

html post请求之a标签的两种用法举例

程序员文章站 2022-08-26 17:03:54
html post请求之a标签的两种用法举例 1、使用ajax来发起POST请求HTML代码如下: 发起POST请求 JQuery代码如下: $(".a_post").on("click",f ......

html post请求之a标签的两种用法举例

1、使用ajax来发起post请求
html代码如下:

<a href="https://www.cnblogs.com/" class="a_post">发起post请求</a>

jquery代码如下:

$(".a_post").on("click",function(event){
    event.preventdefault();//使a自带的方法失效,即无法调整到href中的url(https://www.cnblogs.com/)
    $.ajax({
           type: "post",
           url: "url地址",
           contenttype:"application/json",
           data: json.stringify({param1:param1,param2:param2}),//参数列表
           datatype:"json",
           success: function(result){
              //请求正确之后的操作
           },
           error: function(result){
              //请求失败之后的操作
           }
    });
});
2、使用form表单来发起post请求
<form id="_form" method="post" action="target">
  <input type="hidden" name="name" value="value" /> 
  <a onclick="document.getelementbyid('_form').submit();">点击提交</a>
</form>