HTML 5-如何防止输入框中的电子邮件验证来自type =' email'

时间:2014-11-14 13:06:59

标签: ruby-on-rails html5 angularjs

当无效的电子邮件在controller.js文件中没有收到警报时的电子邮件地址时,

提交按钮

也使用@scope

<form ng-show="!subscribeSuccess" ng-submit="subscribeNewsLetter(subscribEmailAddress)" novalidate>
<input type="email" name="subscribEmailAddress" placeholder="SHOP.SUBSCRIBE_PLACEHOLDER" ng-            model="subscribEmailAddress" translate>
<button type="submit" name="commit" class="action-button" translate>SHOP.SUBSCRIBE</button>
</form>

2 个答案:

答案 0 :(得分:1)

使用novalidate属性:

<input type="email" novalidate/>

novalidate属性只是告诉浏览器禁用内置HTML5验证,或忽略您可能使用的任何HTML5验证属性。

答案 1 :(得分:0)

禁用验证,您的电子邮件地址转到范围

喜欢<input type="text" />