龙空技术网

SpringBoot+jQuery添加数据

洞悉科学 62

前言:

当前同学们对“jqueryhtmldata”大致比较关怀,兄弟们都需要知道一些“jqueryhtmldata”的相关资讯。那么小编在网摘上收集了一些关于“jqueryhtmldata””的相关资讯,希望朋友们能喜欢,朋友们一起来学习一下吧!

<!DOCTYPE html><html><head><meta charset="UTF-8"><title>插入数据</title><scriptsrc="/jquery_2_1.min.js"></script></head><body><form id="form-add">用户名:<input type="text"  name="userName"><br>  密码:<input type="text" name="passWord"><br/><input id="btn-add" type="button" value="添加数据" /></form><script type="text/javascript">$("#btn-add").click(function() {       $.ajax({       url: "/usersave2",       type: "post",       data: $("#form-add").serialize(),             dataType: "json",       success: function(res) {           if (res.success) {          alert(res.msg);   location.href="/userlist";          } else {               alert("注册失败!" + res.message);          }      },       error:function(xhr){      alert("发生错误"+xhr.status);      }  });});</script></body></html>

标签: #jqueryhtmldata #jquery提交list