博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bootstrap19-内联表单
阅读量:5832 次
发布时间:2019-06-18

本文共 973 字,大约阅读时间需要 3 分钟。

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>内联表单</title>

<link rel="stylesheet" href="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css">  

</head>

<body>

<div class="container">

<form action="" role="form" class="form-inline">

<div class="form-group">

<label for="name" class="sr-only">名称</label>

<input type="text" class="form-control" id="name" placeholder="请输入名称">

</div>

<div class="form-group">

     <label for="inputfile" class="sr-only">文件输入</label>

     <input type="file" id="inputfile">

     <p class="help-block">这里是块级帮助文本的实例。</p>

   </div>

   <div class="checkbox">

     <label>

       <input type="checkbox">请打勾

     </label>

   </div>

   <button type="submit" class="btn btn-default">提交</button>

</form>

</div>

    <script src="http://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script>

   <script src="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script>

</body>

</html>

本文转自 素颜猪 51CTO博客,原文链接:http://blog.51cto.com/suyanzhu/1895698

转载地址:http://nordx.baihongyu.com/

你可能感兴趣的文章
javascript 编程规范
查看>>
MVC中如何设置路由指定默认页
查看>>
何如获取单选框中某一个选中的值
查看>>
paip.输入法编程----删除双字词简拼
查看>>
中国象棋男女冠军贺兰山下上演“龙凤弈”
查看>>
作为软件工程师,如何进行知识管理
查看>>
如何理解盒模型及其content、padding、border、margin?
查看>>
聊聊flink Table的select操作
查看>>
用ActionScript与JavaScript实现Flash与网页的交互
查看>>
基于redis的消息队列和键空间通知实现商品抢购和限时支付
查看>>
小程序实现人脸识别功能
查看>>
android 之 DownloadManager
查看>>
通俗易懂介绍js作用域链和闭包,不懂的进!
查看>>
git使用总结
查看>>
nestjs后端开发实战(一)——依赖注入
查看>>
微服务实战(八):落地微服务架构到直销系统(服务高可用性)
查看>>
python大佬养成计划----JavaScript基础
查看>>
Flask框架基础(二)
查看>>
快速搭建 webpack + react 环境
查看>>
docker系列--runC解读
查看>>