Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
565 views
in Technique[技术] by (71.8m points)

javascript - 如何使用javascript验证表单电子邮件地址?(How can I validate an form email address with javascript?)

I am having a really hard time with a form validation and would appreciate some help.

(我在表单验证方面遇到了很多困难,希望能有所帮助。)

Essentially I have a form with various required fields, to include inputs, select, and textarea.

(基本上,我有一个带有各种必填字段的表单,其中包括输入,选择和文本区域。)

One of the form fields is for an email address that I want to validate.

(表单字段之一是我要验证的电子邮件地址。)

The problem I have is that I loop through the form elements using the querySelectorALL and check to see if a field is both required AND not empty.

(我遇到的问题是,我使用querySelectorALL遍历表单元素,并检查一个字段是否既是必需的又不是空的。)

The problem I have is integrating a second validation for the email field.

(我遇到的问题是对电子邮件字段进行第二次验证。)

In the main loop, it may show as required and NOT empty, but could contain an invalid email value.

(在主循环中,它可能显示为必填项,并且不为空,但可能包含无效的电子邮件值。)

So I thought to create a second conditional in the for loop, to check if the name of the item is "Email", and if it was, check it for validity.

(因此,我想在for循环中创建第二个条件,以检查项目名称是否为“ Email”,如果是,请检查其有效性。)

What I find is that submitting the form with the placeholder makes the field's placeholder text red.

(我发现,使用占位符提交表单会使该字段的占位符文本变为红色。)

If I then put in an invalid email address, the field turns black, but if you look at my conditional, if it is an invalid email the value should stay red, but it does not.

(如果我随后输入了无效的电子邮件地址,则该字段将变为黑色,但如果您查看我的条件电子邮件,则该字段应为红色,但不是。)

I hope this is making sense.

(我希望这是有道理的。)

I have been at this for hours and really struggling.

(我已经在这里呆了几个小时了,真的很挣扎。)

 function validateAppt() { var returnVal = true; var divElem = document.getElementById("appointmentform"); var inputElements = divElem.querySelectorAll("input, select, textarea"); inputElements.forEach(a => a.style.color = "black"); inputElements.forEach(a => a.style.borderColor = "black"); for (let i = 0; i < inputElements.length; i++) { if (inputElements[i].required && inputElements[i].value == "") { inputElements[i].style.borderColor = "red"; if (inputElements[i].type != 'select-one') { inputElements[i].style.setProperty("--c", "red"); } else { inputElements[i].style.color = "red"; } returnVal = false; } if (inputElements[i].name == "Email") { if (!validateEmail(inputElements[i].value)) { inputElements[i].style.setProperty("--c", "red"); inputElements[i].style.color = "red"; console.log("InValid Email"); } else { inputElements[i].style.color = "black"; console.log("Valid Email"); } } } if (!returnVal) { $("#appointment_introduction").css('color', 'red').text('Please complete required form fields.'); $('html, body').animate({ scrollTop: $('#appointment_introduction').offset().top - 200 }, 2000); return false; } else { return true; } } function validateEmail(email) { var re = /^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,10}|[0-9]{1,3})(\]?)$/; return re.test(email); } 

  ask by TMHDesign translate from so


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I use default HTML5 validation everywhere with checkValidity method whether on whole form or on elements as needed and simple CSS classes to show the error.

(我在所有地方都使用带有checkValidity方法的默认HTML5验证,无论是在整个表单上还是在需要的元素上,都使用简单的CSS类来显示错误。)

For little more complicated you can use also pattern attribute to use regexp.

(对于更复杂的内容,您还可以使用pattern属性来使用regexp。)

More read on https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms/Form_validation

(有关更多信息, 请参见https://developer.mozilla.org/zh-CN/docs/Learn/HTML/Forms/Form_validation)

Here is some minimal example:

(这是一些最小的示例:)

 const form = document.getElementById('someForm') form.onsubmit = submit function submit(e) { e.preventDefault() this.classList.remove('invalid') if (!this.checkValidity()) { this.classList.add('invalid') } } 
 form.invalid input:invalid { border: red 1px solid; } 
 <form action="" id="someForm" novalidate> <input placeholder="email" type="email" required> <input type="text" placeholder="random text" required> <button>Submit</button> </form> 


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...