使用post方法提交表单的方法有两种,一种是使用表单的post的方法提交或者使用ajax异步post提交。
工具原料:编辑器、浏览器
1、方法一:直接使用form表单提交,简单的代码如下:
First name:
Last name:
2、使用jQuery的ajax方法进行post提交,简单的代码如下:
$.ajax({ type:"post", url:"test.php", async:true });