摘要:
啥?延时切换?自动切换?好吧,我先写好了,看你需求怎么折腾 - -, 标签切换 栏目1 栏目2 栏目3 内容1 内容2 内容3 阅读全文
摘要:
1.IE6背景缓存try{ document.execCommand("BackgroundImageCache", false, true); }catch(e){}2.event.x与event.yvar evX = event.x || event.pageX, evY =... 阅读全文
摘要:
1.如何清除图片下方出现几像素的空白间隙?//方法1:img{display:block;}//方法2:img{vertical-align:top;}//备注:除了top值,还可以设置为text-top | middle | bottom | text-bottom,甚至特定的和值都可以//方法3... 阅读全文
摘要:
CSS HackIE条件注释:所有IE: css code IE6以上: css code IE6以上(含IE6): css code IE7以下: css code IE7以下(含IE7): css code 所有IE: \9IE6: _IE7: +IE8和opera: \0IE9: :root ... 阅读全文
摘要:
传值和传址基本数据类型(string,number,boolean)传值,复杂数据类型按引用传递(传址)传值例:var a = 1; b = a; b++; 结果:a = 1,b = 2;传址例:var a = [0, 1]; b = a; b.push(2); 结果:a = [0, 1, 2]; ... 阅读全文