html5 – 如何在bootstrap中更改form-control的popover中必需字段的默认消息?

前端之家收集整理的这篇文章主要介绍了html5 – 如何在bootstrap中更改form-control的popover中必需字段的默认消息?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<form class="form-asd" role="form">
    <h2 class="form-signin-heading">login</h2><hr />
    <label class="control-label"  for="username">Username</label>
    <input class="form-control" type="email"  required="" placeholder="username"data-error="enter valid username"></input>
    <label class="control-label"  for="username">password</label>
    <input class="form-control" type="password"  required=" " placeholder="Password"></input>
    <label class="checkBox"></label>
    <button class="btn btn-lg btn-primary " type="submit">submit</button>
</form>

我们如何更改这个pop请求字段的“请填写这个字段”的默认消息到“请输入用户名

解决方法

当无效事件发生时,可以使用setCustomValidity函数

像bellow:

<input class="form-control" type="email"  required="" placeholder="username" oninvalid="this.setCustomValidity('Please Enter valid email')"></input>
原文链接:https://www.f2er.com/html5/168911.html

猜你在找的HTML5相关文章