IE中的占位符文本问题

时间:2013-09-17 05:44:16

标签: javascript html validation email placeholder

我在文本框中使用占位符文本作为电子邮件地址,如下所示。

<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;
}

请帮我解决这个问题。

0 个答案:

没有答案