首页 > 代码库 > Bootstrap中默认表单的创建
Bootstrap中默认表单的创建
<form action="">
<div class="form-group">
<label class="control-label" for="uname">用户名:</label>
<input class="form-control" id="uname" type="text">
<span class="help-block">用户名长度在6~12位之间</span>
</div>
<div class="form-group">
<label class="control-label" for="upwd">密码:</label>
<input class="form-control" type="text" id="upwd">
<span class="help-block">密码中必须包含数字、字母</span>
</div>
<!--Bootstrap编码规范中规定:单选/复选要放在label中-->
<div class="checkbox">
<label>
<input type="checkbox">我接受本站的使用条款
</label>
</div>
<input class="btn btn-success" type="button" value="http://www.mamicode.com/提交数据"></input>
<input class="btn btn-danger" type="button" value="http://www.mamicode.com/清空重填"></input>
</form>
Bootstrap中默认表单的创建
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。