摘要: 1、表单 基本格式,实现基本的表单样式 <form class="form-horizontal"> <div class="form-group"> <label class="col-sm-2 control-label">电子邮件</label> <div class="col-sm-10"> 阅读全文
posted @ 2017-07-30 22:09 zhangjinru123 阅读(698) 评论(0) 推荐(0) 编辑
摘要: 1、表格 基本格式,实现基本的表格样式 <table class="table"> <thead> <tr> <th>编号</th> <th>姓名</th> <th>性别</th> <th>年龄</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>张三</ 阅读全文
posted @ 2017-07-30 21:22 zhangjinru123 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 1、页面主体,Bootstrap 将全局 font-size 设置为 14px,line-height 行高设置为 1.428(即20px);<p>段落元素被设置等于 1/2 行高(即 10px);颜色被设置为#333。 2、标题 在 h1 ~ h6 元素之间,还可以嵌入一个 small 元素作为副 阅读全文
posted @ 2017-07-30 20:48 zhangjinru123 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 视频教程:http://study.163.com/course/courseMain.htm?courseId=1017002 源码和笔记:http://pan.baidu.com/s/1c06RiMW 一.Bootstrap 概述 Bootstrap 是由 Twitter 公司(全球最大的微博) 阅读全文
posted @ 2017-07-30 20:06 zhangjinru123 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 1、首先导入相应的js文件 3、然后在自己的index.js文件中实现自己的代码 通过依赖关系引入js库 4、定义自己的utils.js库 //自定义自己的库,然后引入 require(['utils'], function(utils) { utils.show(); utils.change() 阅读全文
posted @ 2017-07-30 17:49 zhangjinru123 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1、首先将jQuery.js和jquery.validate.js加入对应的页面中,如果要中文的提示语还要把messages_zh.js加入,以及对应的css文件。 对应的HTML和js代码如下 常用的校验规则: 2、将校验规则写到js中 其中 equalTo: "#password" //校验两次 阅读全文
posted @ 2017-07-30 15:15 zhangjinru123 阅读(950) 评论(0) 推荐(0) 编辑