- 浏览: 9683 次
- 性别:
- 来自: 沈阳
最近访客 更多访客>>
最新评论
-
wangxinpier:
不错不错,学习了。。。。
[转]字体知识 -
wangxinpier:
随便说说,我是来捣乱的....呵呵http://meyerwe ...
Record -
sunwt:
你教教我呗~QQ上给我讲讲~我小白一个
Record -
wangxinpier:
吼吼~~~~
Record -
wangxinpier:
静态内部类白瞎了....
Record
文章列表
一.document注册"DOMContentLoaded"事件
二.window注册load事件
三.body attachEvent onreadystatechange 事件
四.navigator.userAgent包含/WebKit|KHTML/i 循环监测document.readyState 匹配/loaded|complete/
TextNode节点的data属性 , 保存着节点的文本信息
data.search(字符串|RegExp),返回匹配字符串的起始位置(从0开始);
TextNode splitText(分隔位置(从0开始)) , 创建一个新的textnode为截取的文本并返回 , 原始的textNode保存截取后剩余的文本。
元素element 1
属性attr 2
文本text 3
注释comments 8
文档document 9
javascript内,判断一个方法是否存在要加上方法所属的已存在的对象。
例如:if(window.functionName){
}
否则会报错阻塞js代码的执行
1. <script>
f = function() { return true; };
g = function() { return false; };
(function() {
if (g() && [] == ![]) {
f = function f(){return false;}
g = function g() { return true; }
}
})();
window.onload = function(){
alert(f()); // true or false ?
}
< ...
转自http://lifesinger.org/blog/2009/08/font-family-in-css/.
body,
button, input, select, textarea {
font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
}
“\5b8b\4f53″ 就是 “宋体”。用 unicode 表示,不用 SimSun, 是因为 Firefox 的某些版本和 O ...
/* v1.0 | 20080212 */
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,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, for ...
# public class Singleton {
#
# private static class Holder {
# private static final Singleton instance = new Singleton();
# }
#
# private Singleton() {
# }
#
# public static Singleton getInstance() {
# return Holder.instance;
# }
# }
...
.clear_f:after{
content:"."; /*在对象后,显示"."*/
display:block; /*以块显示(换行作用)*/
height:0; /*高度设为0,使其不对页面产生影响*/
clear:both; /*清除浮动*/
visibility:hidden; /*将以对象后增加的对象隐藏,但保留物理空间(因为高度设为0,所以对页面无影响)*/
}