前端开发避坑-form表单action和submit提交与ajax异步提交冲突引起的故障解决

前端开发避坑-form表单action和submit提交与ajax异步提交冲突引起的故障解决!

近期在开发网站前端的时候,始终出现2次请求。困扰了很久。查询了网上的解决办法。发现,根源是因为,我的form表单里增加了一个action。虽然里面是空的,但是依然会在点击submit格式的按钮时,触发一次请求。这就引起了一种怪异的现象。

虽然ajax执行了成功!数据库执行了追加数据操作。但是页面始终停留在当前地址。

非常怪异,实际上,大家去掉form表单内的action,改一下submit,改成button模式,就可以恢复正常了。


<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head><meta charset="UTF-8"><title>用户注册-积德寺-菩提佛堂app-网页版</title><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="keywords" content="许愿祈福,祈福网站"/><meta name="description" content="欢迎注册菩提佛堂app账号信息,可以参加线上共修活动!"/><link th:href="@{/static/css/mycommon.css}" rel="stylesheet" type="text/css"><link th:href="@{/static/css/login.css}" rel="stylesheet" type="text/css"><script th:src="@{/static/js/jquery.js}"></script><style>.qifu_main {margin:10px auto;padding:14px;border: 1px solid #99CC00;border-radius: 8px;background: rgba(235, 179, 22, 0.8);text-align: center;font-size: 1.0em;width: 80%;height:auto;}.qifu_main .form_register {width: auto;height: auto;}.qifu_main p img{width: 80%;}.qifu_main .form_register .item {margin: 8px auto;padding-bottom: 12px;text-align: left;width: auto;height: auto;}.qifu_main .form_register  button {display: block;width: 100px;height: 30px;border-radius: 10px;background-color: #ffb100;font-size: 1.0em;color: #FFFFFF;margin: 5px auto;}.qifu_main .form_register .item select{width: 30%;height: 26px;}.qifu_main .form_register .item input{width: 100%;height: 26px;}.qifu_main .form_register .item .icon-input{display: inline-block;height: 30px;line-height: 30px;}.qifu_main .form_register .item label img{width: 30px;height: auto;}</style>
</head>
<body>
<div th:replace="header :: top"></div>
<!--开始注册-->
<div class="qifu_main"><p>欢迎注册会员</p><form  id="form_register" class="form_register"><div class="item"><label for="uname"><img th:src="@{/static/images/icon-lianhua.png}">名字:</label><input type="text" required id="uname" name="username" minlength="2" maxlength="10"  placeholder="您的名字不超过10个字"><span class="msg-default hidden" id="namespan">用户名长度最小为2,最大为10</span></div><div class="item"><label for="upassword"><img th:src="@{/static/images/icon-lianhua.png}">密码:</label><input type="password" required id="upassword" minlength="6" maxlength="10" name="password"   placeholder="请设置您的密码"><span class="msg-default hidden">密码长度在6到10位之间</span></div><div class="item"><label for="upwdconfirm"><img th:src="@{/static/images/icon-lianhua.png}">验证密码:</label><input type="password" required id="upwdconfirm" name="upwdconfirm" minlength="6" maxlength="10"  placeholder="请再次输入密码"><span class="msg-default hidden">密码长度在6到10位之间</span></div><div class="item"><label for="phone"><img th:src="@{/static/images/icon-lianhua.png}">手机:</label><input type="phone" required id="phone" name="phone" maxlength="11" pattern="(\d{11})|^((\d{7,8})|(\d{4}|\d{3})-(\d{7,8})|(\d{4}|\d{3})-(\d{7,8})-(\d{4}|\d{3}|\d{2}|\d{1})|(\d{7,8})-(\d{4}|\d{3}|\d{2}|\d{1}))$" placeholder="请输入手机号码"><span class="msg-default hidden" id="phonespan">手机长度最大50位</span></div><div class="item"><label for="email"><img th:src="@{/static/images/icon-lianhua.png}">邮箱:</label><input type="email" required id="email" name="email" maxlength="100"  placeholder="请输入邮箱"><span class="msg-default hidden" id="emailspan">邮箱长度最大100位</span></div><div class="item"><button type="button" id="btnRegister" >提交</button>&nbsp;&nbsp;<button type="reset" >重置</button></div></form>
</div>
<!--结束注册-->
<div th:replace="footer :: footer"></div>
<script>/*1.对用户名进行验证*///当对象失去焦点触发验证流程uname.onblur = function(){if(this.validity.valueMissing){this.nextElementSibling.innerHTML = '用户名不能为空';this.nextElementSibling.className = 'msg-error';this.setCustomValidity('用户名不能为空');}else if(this.validity.tooShort){this.nextElementSibling.innerHTML = '用户名不能少于2位';this.nextElementSibling.className = 'msg-error';this.setCustomValidity('用户名不能少于2位');}else {this.nextElementSibling.innerHTML = '用户名格式正确';this.nextElementSibling.className = 'msg-success';this.setCustomValidity('');var data =$("#uname").val();if(!data){   //用户没有输入任何内容return;}/**发起异步GET请求,询问服务器用户名是否已经存在**/$.ajax({url:"../user/checkName",data:"username="+$("#uname").val(),type:"get",dataType:"json",success:function(obj){$("#namespan").html(obj.message);//显示服务器的响应信息if(obj.state==0){$("#namespan").attr("class","msg-error");}else{$("#namespan").attr("class","msg-success");}}});}}uname.onfocus = function(){this.nextElementSibling.innerHTML = '用户名长度在2到10位之间';this.nextElementSibling.className = 'msg-default';}upassword.onfocus = function(){this.nextElementSibling.innerHTML = '密码长度在6到10位之间';this.nextElementSibling.className = 'msg-default';}upassword.onblur = function(){if(this.validity.valueMissing){this.nextElementSibling.innerHTML = '密码不能为空';this.nextElementSibling.className = 'msg-error';this.setCustomValidity('密码不能为空');}else if(this.validity.tooShort){this.nextElementSibling.innerHTML = '密码长度在尽量别少于6位';this.nextElementSibling.className = 'msg-error';this.setCustomValidity('密码长度在尽量别少于6位');}else {this.nextElementSibling.innerHTML = '密码格式正确';this.nextElementSibling.className = 'msg-success';this.setCustomValidity('');}}upwdconfirm.onfocus = function(){this.nextElementSibling.innerHTML = '密码长度在6到10位之间';this.nextElementSibling.className = 'msg-default';}//当确认密码输入框失去焦点时触发验证。upwdconfirm.onblur = function(){if(this.validity.valueMissing){this.nextElementSibling.innerHTML = '密码不能为空';this.nextElementSibling.className = 'msg-error';this.setCustomValidity('密码不能为空');}else if(this.validity.tooShort){this.nextElementSibling.innerHTML = '密码长度在尽量别少于6位';this.nextElementSibling.className = 'msg-error';this.setCustomValidity('密码长度在尽量别少于6位');}else {this.nextElementSibling.innerHTML = '密码格式正确';this.nextElementSibling.className = 'msg-success';this.setCustomValidity('');var pwd1 =$("#upassword").val();var pwd2 =$("#upwdconfirm").val();if(pwd1!=pwd2){this.nextElementSibling.innerHTML = '两次输入密码不一致';this.nextElementSibling.className = 'msg-error';this.setCustomValidity('密码长度在尽量别少于6位');}else{this.nextElementSibling.innerHTML = '两次输入密码一致';this.nextElementSibling.className = 'msg-success';this.setCustomValidity('');}}}/*3.对邮箱地址进行验证*/email.onblur = function(){if(this.validity.valueMissing){this.nextElementSibling.innerHTML = '邮箱不能为空';this.nextElementSibling.className = 'msg-error';this.setCustomValidity('邮箱不能为空');}else if(this.validity.typeMismatch){this.nextElementSibling.innerHTML = '邮箱格式不正确';this.nextElementSibling.className = 'msg-error';this.setCustomValidity('邮箱格式不正确');}else {this.nextElementSibling.innerHTML = '邮箱格式正确';this.nextElementSibling.className = 'msg-success';this.setCustomValidity('');var data =document.getElementById("email").value;if(!data){   //用户没有输入任何内容return;}/**发起异步GET请求,询问服务器邮箱是否已经存在**/$.ajax({url:"../user/checkEmail",data:"email="+$("#email").val(),type:"get",dataType:"json",success:function(obj){$("#emailspan").html(obj.message);if(obj.state==0){$("#emailspan").attr("class","msg-error");}else{$("#emailspan").attr("class","msg-success");}}});}}email.onfocus = function(){this.nextElementSibling.innerHTML = '请输入合法的邮箱地址';this.nextElementSibling.className = 'msg-default';}/*3.对手机号进行验证*/phone.onblur = function(){if(this.validity.valueMissing){this.nextElementSibling.innerHTML = '手机号不能为空';this.nextElementSibling.className = 'msg-error';this.setCustomValidity('手机号不能为空');}else if(this.validity.patternMismatch){this.nextElementSibling.innerHTML = '手机号格式不正确';this.nextElementSibling.className = 'msg-error';this.setCustomValidity('手机号格式不正确');}else {this.nextElementSibling.innerHTML = '手机号格式正确';this.nextElementSibling.className = 'msg-success';this.setCustomValidity('');var data =document.getElementById("phone").value;if(!data){   //用户没有输入任何内容return;}/**发起异步GET请求,询问服务器用户名是否已经存在**/$.ajax({url:"../user/checkPhone",data:"phone="+$("#phone").val(),type:"get",dataType:"json",success:function(obj){$("#phonespan").html(obj.message);if(obj.state==0){$("#phonespan").attr("class","msg-error");}else{$("#phonespan").attr("class","msg-success");}}});}}phone.onfocus = function(){this.nextElementSibling.innerHTML = '请输入合法的手机号';this.nextElementSibling.className = 'msg-default';}
</script>
<script>$('#btnRegister').click(function(){var lengths=0;$('.item').each(function(){if($(this).find('span').hasClass('msg-success')){lengths++;}});//异步注册提交if(lengths==5){$.ajax({url:"../user/register",data:$("#form_register").serialize(),//相当于表单内的提交表单值集合。必须使用到nametype:"post",dataType:"json",success:function(obj){if(obj.state==0){console.log(obj.state)$("#namespan").html(obj.message)$("#namespan").attr("class","msg-error")}else if(obj.state==1){console.log(obj.state)window.location = "../user/showLogin"}},error:function (obj){$("#namespan").html(obj.message)$("#namespan").attr("class","msg-error")}});}})
</script>
</body>
</html>

如图所示,这个就是,我修改后的代码,里面button,之前是submit.form的内容页删掉了action.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/776088.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JAVA WEB 能够实现整个文件夹的上传下载吗?

导入项目&#xff1a; 导入到Eclipse&#xff1a;导入项目 导入到IDEA&#xff1a;导入项目 springboot统一配置&#xff1a;springboot-配置 下载示例&#xff1a; https://gitee.com/xproer/up6-jsp-eclipse/tree/6.5.40/ 工程 NOSQL NOSQL示例不需要任何配置&#xff0c;可…

【面试经典150 | 】最长递增子序列

文章目录 Tag题目来源解题思路方法一&#xff1a;动态规划 写在最后 Tag 【动态规划】【数组】 题目来源 300. 最长递增子序列 解题思路 方法一&#xff1a;动态规划 定义状态 dp[i] 表示以位置 i 对应整数为末尾的最长递增子序列的长度。 状态转移 我们从小到大计算 dp…

【前端学习——js篇】 10.this指向

具体见&#xff1a;https://github.com/febobo/web-interview 10.this指向 根据不同的使用场合&#xff0c;this有不同的值&#xff0c;主要分为下面几种情况&#xff1a; 默认绑定隐式绑定new绑定显示绑定 ①默认绑定 全局环境中定义person函数&#xff0c;内部使用this关…

FASTAPI系列 16-其他响应类型

FASTAPI系列 16-其他响应类型 文章目录 FASTAPI系列 16-其他响应类型前言一、HTMLResponse 响应 HTML二、纯文本响应三、另外的JSON 响应四、FileResponse文件五、StreamingResponse六、RedirectResponse 重定向请求总结更多内容&#xff0c;请关注公众号, 发送666 更可以得到免…

解决配置文件中文乱码

一、问题 二、解决方法

HTML5+CSS3小实例:文字边框视觉错位

实例:文字边框视觉错位 技术栈:HTML+CSS 效果: 源码: 【HTML】 <!DOCTYPE html> <html lang="zh-CN"> <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scal…

StringRedisTemplate与RedisTemplate详解【序列化的方式不同】

spring 封装了 RedisTemplate 对象来进行对redis的各种操作&#xff0c;它支持所有的 redis 原生的 api。在RedisTemplate中提供了几个常用的接口方法的使用&#xff0c;分别是: private ValueOperations<K, V> valueOps; private HashOperations<K, V> hashOps; …

TLSR8258 MTU、DLE(PDU)

本文基于泰凌微TLSR8258 M1S1 demo。 1.DLE&#xff1a;LE Data Packet Length Extension 中文全称&#xff1a;低功耗蓝牙数据包长度扩展。 这是一个在2014年12月2日正式发布的bluetooth for BLE添加的新特性&#xff0c;以支持在LL Data PDU更长的数据&#xff0c;最大支持…

自己编译SQLite或将SQLite移植到新的操作系统(六)

返回&#xff1a;SQLite—系列文章目录 上一篇:SQLite中的动态内存分配&#xff08;五&#xff09; 下一篇&#xff1a;SQLite—系列文章目录 1.0 引言 对于大多数应用程序&#xff0c;推荐的构建方法 SQLite是使用合并代码 文件 sqlite3.c 及其相应的头文件 sqlite3.…

刚刚,百度和苹果宣布联名

百度 Apple 就在刚刚&#xff0c;财联社报道&#xff0c;百度将为苹果今年发布的 iPhone16、Mac 系统和 iOS18 提供 AI 功能。 苹果曾与阿里以及另外一家国产大模型公司进行过洽谈&#xff0c;最后确定由百度提供这项服务&#xff0c;苹果预计采取 API 接口的方式计费。 苹果将…

Jenkins用户角色权限管理

Jenkins作为一款强大的自动化构建与持续集成工具&#xff0c;用户角色权限管理是其功能体系中不可或缺的一环。有效的权限管理能确保项目的安全稳定&#xff0c;避免敏感信息泄露。 1、安装插件&#xff1a;Role-based Authorization Strategy 系统管理 > 插件管理 > 可…

Docker 哲学 - Dockerfile 指令

Dockerfile 的 entrypoint 和 cmd 书写方式一样吗&#xff0c;分别用一个node项目的 demo来举例 Dockerfile 的 entrypoint 、cmd 有什么区别&#xff0c;分别举例他们同时出现的场景和 单独出现的场景 entrypoint 和 cmd 命令&#xff1a; 同时出现&#xff1a; 1、cmd 作为 e…

【教程】iOS如何抓取HTTP和HTTPS数据包经验分享

&#x1f4f1; 在日常的App开发和研发调研中&#xff0c;对各类App进行深入的研究分析时&#xff0c;我们需要借助专业的抓包应用来协助工作。本文将介绍如何使用iOS手机抓包工具来获取HTTP和HTTPS数据包&#xff0c;并推荐一款实用的抓包应用——克魔助手&#xff0c;希望能够…

婴儿围嘴CPC认证,亚马逊CPSIA检测要求

婴幼儿围嘴 如果您在亚马逊商城发布商品&#xff0c;则必须遵守适用于这些商品和商品信息的所有联邦、州和地方法律以及亚马逊政策&#xff08;包括本政策&#xff09;。 质科检测&#xff0c;专业提供亚马逊合规检测服务&#xff08;详情联系质科李工&#xff09; 本政策适用…

快速上手Pytrch爬虫之爬取某应图片壁纸

一、前置知识 1 爬虫简介 网络爬虫&#xff08;又被称作网络蜘蛛、网络机器人&#xff0c;在某些社区中也经常被称为网页追逐者)可以按照指定的规则&#xff08;网络爬虫的算法&#xff09;自动浏览或抓取网络中的信息。 1.1 Web网页存在方式 表层网页指的是不需要提交表单&…

《数据结构学习笔记---第三篇》---单链表具体实现

目录 1.链表 1.1 链表的概念及结构 2.不带头单链表的实现 2.1创建头文件“SList.h” 2.2 创建具体接口实现文件SList.c 2.2.1打印 2.2.2申请链表结点 2.2.3创建一个长度为n的链表 2.2.4尾插尾删 2.2.5头插头删 2.2.6寻找x元素&#xff0c;返回pos 2.2.7插入和删除pos…

JS(三)JavaScript中的流程控制

JS&#xff08;三&#xff09;JavaScript中的流程控制 在JavaScript中&#xff0c;流程控制通常通过条件语句和循环语句来实现。常见的流程控制结构包括&#xff1a; 01 条件语句&#xff1a; if 语句&#xff1a;根据条件执行不同的代码块。if…else 语句&#xff1a;在条件…

量子专家联合开展欧洲之星项目“SupremeQ”以实现光量子计算优势

内容来源&#xff1a;量子前哨&#xff08;ID&#xff1a;Qforepost&#xff09; 编辑丨王珩 编译/排版丨浪味仙 沛贤 深度好文&#xff1a;1800字丨10分钟阅读 近日&#xff0c;英国全栈光量子计算系统公司 ORCA Computers、德国单光子探测器提供商 Pixel Photonics、丹麦量…

spring boot的返回值里面含有net.sf.json.JSONObject 报错net.sf.json.JSONNull[“empty“])]

一、过程 在对接第三的接口使&#xff0c;发现对方使用的json是net.sf.json.JSONObject。接口在返回值的时候就没有对其进行处理&#xff0c;直接返回了但是&#xff0c;后台也不报错&#xff0c;后端也没有收到响应值&#xff0c;只显示500的报错状态码。仔仔细细的看后台的日…

FastAPI+React全栈开发10 MongoDB聚合查询

Chapter02 Setting Up the Document Store with MongoDB 10 Aggregation framework FastAPIReact全栈开发10 MongoDB聚合查询 In the following pages, we will try to provide a brief introducton to the MongoDB aggregation framework, what it is, what benefits it of…