1.validate表单验证
http://m.jinzhuedu.org/mo_ztlist/mimang3/
2.按钮处理
http://m.xshiedu.com/mo_ztlist/java.html
.zt3 {
width: 12rem;
height: 3rem;
text-align: center;
line-height: 3rem;
background: #00aaf8;
color: #ffffff;
font-size: 1.1rem;
display: block;
margin: 1rem auto;
border-radius: 0.3rem;
-moz-border-radius: 0.3rem;
-webkit-border-radius: 0.3rem;
}
-
浏览器显示页面内容的屏幕区域:viewport (视口)
{template "content","header_mob"} 没有引入 头部的话
记得要添加
<meta id="viewport" name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;" />
4.WebStorm主题设置
http://www.webstormthemes.com/
1.首先从WebStorm主题上下载自己喜欢的主题。
2.然后将主题文件copy到一个文件夹下。使用OSX系统的童鞋放到 ~/Libray/Preferences/WebStorm/colors/;Windows的童鞋方法 C:/Users/UserName/.WebStorm/config/colors/;Linux系统的童鞋放到 ~/.WebStorm/config/colors/。
3.打开IDE,File > Setting > Editor > Colors&Fonts ,选择刚才增加的主题文件
一般默认的字体有点小,所以可以去File > Setting > Editor > Colors&Fonts > Font 修改下字体大小
5.HTML <label> 标签的 for 属性
定义和用法
for 属性规定 label 与哪个表单元素绑定。
隐式和显式的联系
标记通常以下面两种方式中的一种来和表单控件相联系:将表单控件作为标记标签的内容,这样的就是隐式形式,或者为 <label> 标签下的 for 属性命名一个目标表单 id,这样就是显式形式。