博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
我个人的javascript和css命名规范
阅读量:6399 次
发布时间:2019-06-23

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

1.基本对象

Array,arr

Boolean,bool

Data,date

Number,num

String,str

RegExp,reg

Functions,没有后缀名

Event,event

Object,obj

函数的参数,Arguments,arg

尽量能表示什么类型就有什么类型后缀,一个是Button的引用,后缀就是btn

2.声明一个对象或函数的时候,注释它的调用堆栈。
3.声明函数时,注释(1)函数作用(2)函数参数类型和作用
 
------------------CSS部分
1.网页布局模块要注释。
/*---GLOBAL---*/  /*--Structure--*/  /*--Typographic--*/  /*--Forms--*/  /*--Tables--*//*---HEADER---*//*---NAV---*/  /*--Primary--*/         /*--Secondary--*/    /*---CONTENT---*/  /*---SIDEBAR---*/  /*---FOOTER---*/
2.什么时间,谁做了什么。
/*----TITLE: Main screen styles | AUTHOR: EPL | UPDATED: 03/23/10 by EPL----*/
3.样式重置
/*---RESET---*/ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {      margin: 0;      padding: 0;      border: 0;      outline: 0;      font-weight: inherit;      font-style: inherit;      font-size: 100%;      font-family: inherit;      vertical-align: baseline; }
li { list-style:none; }/*消除li自带的小黑点 */
img { border:none; }/*消除图片的边框,主要是兼容IE8以下浏览器*/
a { text-decoration:none; }
a:hover { text-decoration:underline; }
/*清除浮动*/
.clear2:after { content:'.'; display:block; clear:both;height: 0;visibility: hidden; }
html body div.clear3,
html body span.clear3
{
     background: none;
     border: 0;
     clear: both;
     display: block;
     float: none;
     font-size: 0;
     margin: 0;
     padding: 0;
     overflow: hidden;
     visibility: hidden;
     width: 0;
     height: 0;
}
4.属性分组写
盒子模型属性,定位属性,文本和字体属性

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

你可能感兴趣的文章
【300】◀▶ IDL - ENVI API
查看>>
Docker初体验
查看>>
UBUNTU LINUX中连接ANDROID 小米真机调试
查看>>
[转] Zend Framework 中 htaccess 的标准配置
查看>>
linux就是这个范儿之融于心而表于行(1)
查看>>
maven安装配置部署建项运行
查看>>
node爬虫
查看>>
接口测试之JMeter初探
查看>>
Docker背后的内核知识——cgroups资源限制(转)
查看>>
Java技术——Java泛型详解(转)
查看>>
某个第三方支付平台数据库的分析、学习与总结(转)
查看>>
Linux Linux程序练习八
查看>>
读书笔记:《写给大家看的设计书》
查看>>
Predicate与filter
查看>>
UITableViewCell 取消分隔线
查看>>
性能测试工具 nGrinder 项目剖析及二次开发
查看>>
Mybatis集成pagehelper and jsqlparser(分页)
查看>>
50+ 顶级开源 Kubernetes 工具列表
查看>>
老年夫妇为何分床睡?83岁的奶奶是这样说的……
查看>>
恶意软件日均进攻百万次!三大方法保护Hadoop集群免遭攻击!
查看>>