标签:style http io color ar 使用 java sp 文件
<!DOCTYPE html>
charset
为 utf-8
<meta charset="utf-8">
webkit
渲染模式<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
font
center
等已废弃的 HTML 标签<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie6" lang="zh-cn"><![endif]-->
<!--[if IE 7 ]><html class="ie7" lang="zh-cn"><![endif]-->
<!--[if IE 8 ]><html class="ie8" lang="zh-cn"><![endif]-->
<!--[if IE 9 ]><html class="ie9" lang="zh-cn"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><html lang="zh-cn"><!--<![endif]-->
<head>
<meta charset="utf-8" />
<title>网页标题</title>
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
HTML 结构中严禁出现与业务相关的内联 CSS 和内联 JS,所有的 CSS 和 JS 都应该通过外链的形式添加到页面中,如下4种写法都是不允许的:
严禁在 body
内随意插入与业务相关的 style
标签。
<body>
<style>
.box{ margin:20px; }
</style>
</body>
严禁在 HTML 结构上直接写内联样式。
<a href="#" style="color:#333">链接</a>
严禁在 body
内随意插入与业务相关的 script
标签。
<body>
<script>
$( ‘div‘ ).on( ‘click‘, fn );
</script>
</body>
严禁在 HTML 标签上直接使用用 onxxx=fn
绑定与业务相关的事件。
<a href="#" onclick="sayHello">链接</a>
.item
.title
.num
.box
.list
_
或中划线 -
,同一个项目中请勿两种符号混用.acdf
.spxq
ptb30
,推荐使用 img_list
img_title
*
选择器!important
expression
.ie6 .selector{ property: value; } /* ie6 */
.ie7 .selector{ property: value; } /* ie7 */
.ie8 .selector{ property: value; } /* ie8 */
.ie9 .selector{ property: value; } /* ie9 */
.foo.bar
这种连在一起的 class
选择器写法use strict
来开启严谨模式// 使用变量c时,此时变量还未被定义
console.log( c );
var c = 2;
agruments.caller
和 arguments.callee
var
关键字,如果需要声明全局变量,请加上全局命名空间foo = ‘bar‘; // 没有var关键字,会不经意间污染全局作用域
window.foo = ‘bar‘; // 如果确实要声明全局变量,请加上全局命名空间
with
关键字\t
替换成 4 个空格utf-8
,请勿带上 bom
头标签:style http io color ar 使用 java sp 文件
原文地址:http://www.cnblogs.com/xumengxuan/p/4089531.html