微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

twitter-bootstrap-3 – 在Bootstrap中定义一个“required”字段

如何在Twitter Bootstrap 3中根据需要定义文本字段(带红色边框)?

required =“必需”不工作…

<form role="form">
  <div class="form-group">
    <label for="exampleInputEmail1">Email address</label>
    <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
  </div>
  <div class="form-group">
    <label for="exampleInputPassword1">Password</label>
    <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
  </div>
  <div class="form-group">
    <label for="exampleInputFile">File input</label>
    <input type="file" id="exampleInputFile">
    <p class="help-block">Example block-level help text here.</p>
  </div>
  <div class="checkBox">
    <label>
      <input type="checkBox"> Check me out
    </label>
  </div>
  <button type="submit" class="btn btn-default">Submit</button>
</form>

解决方法

在Bootstrap 3中,可以将一个“验证状态”类应用于父元素: http://getbootstrap.com/css/#forms-control-validation

例如,has-error将在输入周围显示一个红色边框。然而,这将不会对实地的实际验证产生影响。您需要添加一些其他客户端(javascript)或服务器逻辑,以使字段需要。

演示:http://bootply.com/90564

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐