摘要: 假如有个div元素<div id="test"><div>,其样式为 #test{ position:fixed; top:200px; left:500px; } 为了兼容IE6,则需添加以下样式 * html #test{ position:absolute; top:expression((( 阅读全文
posted @ 2016-12-08 19:32 soloyeah 阅读(144) 评论(0) 推荐(0)
摘要: 1.用标题标签时最好用h1; 2.布局不要太复杂,三层最佳; 3.<p><br></p>这样写是很好的,无语义化问题; 4.外部链接最好加个rel="nofollow",如<a href="https://www.baidu.com" rel="nofollow"></a> 5.用img标签时,应加 阅读全文
posted @ 2016-12-05 22:40 soloyeah 阅读(147) 评论(0) 推荐(0)
摘要: 一、typeof 例子: typeof 100 "number" typeof "字符串" "string" 注意:typeof 适合基本类型(number、string、boolean、underfined、object)以及function检测,遇到null失效。 二、instanceof 例子 阅读全文
posted @ 2016-12-04 18:27 soloyeah 阅读(113) 评论(0) 推荐(0)