我在文本框中使用占位符文本作为电子邮件地址,如下所示。
<input type="text" placeholder="Email Address" name="email" value="[% FORM.email %]" maxlength=50 autocomplete="off" class="txtBox">
在所有浏览器中,一切正常,但在我点击submit
按钮时,我在使用You have entered invalid email address
时显示placeholders
。我们在js文件中使用此代码。
if(document.PostTopic.email.value != '' && !email_reg.test(document.PostTopic.email.value)) {
alert("You entered an invalid email address.");
document.PostTopic.email.focus();
return false;
}
请帮我解决这个问题。