Bootstrap表单控件使用方法详解

前端之家收集整理的这篇文章主要介绍了Bootstrap表单控件使用方法详解前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

表单作为Bootstrap的核心内容,主要功能是用来与用户做交流的一个网页控件,良好的表单设计能够让网页与用户更好的沟通。

<Meta charset="utf-8">

<Meta http-equiv="X-UA-Compatible" content="IE=edge">

<Meta name="viewport" content="width=device-width,initial-scale=1">

<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">

用户名:

<div class="col-md-10">
<input id="username" class="form-control" type="text" name="username" value="" placeholder="请输入用户名">

<div class="form-group">
<label class="col-md-2 control-label" for="file">上传文件
<div class="col-md-10">
<input id="file" type="file" name="file" value="">

<div class="form-group">

Box">

<label class="checkBox-inline">
<input type="checkBox">音乐

<label class="checkBox-inline">
<input type="checkBox">体育

<div class="form-group">
<label class="col-md-2 control-label">学历:
<div class="col-md-10">
<div class="radio">
<label class="radio-inline">
<input name="raido" type="radio">中学

<label class="radio-inline">
<input name="raido" type="radio">大专

<label class="radio-inline">
<input name="raido" type="radio">研究生

<div class="form-group">
<label class="col-md-2 control-label">个人简历
<div class="col-md-10">
<textarea class="form-control" name="person" rows="5" placeholder="请输入">

<div class="col-md-10 col-md-offset-2">
<button type="button" class="btn btn-success">提交表单

<script src="bootstrap/js/jquery.min.js">
<script src="bootstrap/js/bootstrap.js">

如果大家还想深入学习,可以点击进行学习,再为大家附3个精彩的专题:

插件使用教程

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/bootstrap/42643.html
表单表单

猜你在找的Bootstrap相关文章