- 浏览: 2736828 次
- 性别:
- 来自: 上海
最新评论
-
代码改变生活:
虽然代码敲的头疼的要命,但是依然要感谢你,感谢您共享!!!!开 ...
jxl读取excel日期相差8小时 -
www3837:
org.slf4j.Logger 下载 -
hyztty:
wait_timeout = 86400 interacti ...
druid连接池 -
niaodanwangzi:
连接池可不是给你检测连接状态用的。是为了连接复用,减少连接数。 ...
druid连接池 -
supermine0903:
学习了 啦啦啦
多个路由器同时上网
文章列表
注意 concat 拼写,二者功能很相像,但有两点区别。先看代码
var arr = [];
arr.push(1);
arr.push([2, 3]);
arr.push(4, 5);
arr = arr.concat(6);
arr = arr.concat([7, 8]);
arr = arr.concat(9, 10);
arr.each(function(index, value){
alert(value);
}); // ezj 代码
alert 结果
1
2,3
4
5
6
7
8
9
10
区别
...
注意 concat 拼写,二者功能很相像,但有两点区别
refurl:http://wandejun1012.iteye.com/admin/blogs/1025081
今天来谈一下javascript中的Number类型,在javascript中数字类型并没有分成整数类型(Integer)和浮点数类型(Float) Number就是传统语言的浮点数类型(Float) 传统语言的浮点数类型分为单精度(Single)和双精度(Double) 经过测试:javascript中的Number为双精度(Double) alert(0.1000000000000021 == 0.1000000000000022) // false alert(0.10000000000000021 == 0.10000000000000022) // t ...
var f = document.getElementById("f");
var childs = f.childNodes;
for(var i = childs.length - 1; i >= 0; i--) {
alert(childs[i].nodeName);
f.removeChild(childs[i]);
}
倒过来删,这样索引不会乱。
1、以前做项目的时候用过visibility这个属性,设置这个属性visibility=‘hidden’时,该容器的确不显示了但是还占有空间。 后来修改为display=‘none’时,该层也不显示同时也不占空间。 得出以下结论: display为none时,元素不占用页面空间,就好像该元素不存在一样. visibility为hidden时,仍然占用页面空间,也就是这块区域虽然不可见,但是占据一块空间
2、 outline不占空间,border占空间。在给某些东西上焦点时,用outline真给力,不要再重新调布局。
1、直接关电源 2、init 0 3、telinit 0 4、shutdown -h now 5、halt
1 检测是否有选中if(objSelect.selectedIndex > -1) {//说明选中} else {//说明没有选中}2.动态创建selectfunction createSelect(){var mySelect = document.createElement("select"); mySelect.id = "mySelect"; document.body.appendChild(mySelect); }3.添加选项optionfunction addOption(){//根据id查找对象, var obj=document.g ...
span是非block模式所以默认情况下 style='width:12px;' 这样是不会起作用的只有增加 display:inline-block 才能生效,而 display:block 就变成div的效果了呼呼
我艹,还以为什么高深问题。
一个小J8问题搞了老子3个小时也不止!
原来td本身是不可以被focus的,必须要添加tabindex="-1"
<td class="DVR-04-02-00-td_align-left" id="DVR-04-02-00-td_objCam" tabindex="-1">
否则你死了焦点也不会上去!
<table width= "100% " border= "1 " cellspacing= "0 " cellpadding= "0 " id= "try "> <tr> <td> press to get it. </td> </tr> </table>
对id= "try "而言,
innerhtml: 不包括本身,
<tr ...
有两个方法:
1、setInterval();
例: setInterval(continuousCall,5000); continuousCall是要重复执行的函数名,可以加单引号, 也可以不加。
2、setTimeout()
注:提示:setTimeout() 只执行 code 一次。如果要多次调用,请使用 setInterval() 或者让 code 自身再次调用 setTimeout()。
例:(项目中代码片段)
else if("CallbackSecondTime" == eventName) { ……
setTim ...
editplus默认是不会按语法显示你复制进去的文本的,这个时候需要设置如下:
点文档==》文件类型==》更改文件类型
为了兼容,从IE4.0以后才引入undefined.
null和undefined其实是相等的,通俗一点讲,他们是一回事!
用如下代码可以看出:
<script>
var temp;
var temp2;
if(temp == null)
{
alert("temp="+temp);
}
temp2=null;
if(temp2==undefined)
{
alert("temp2="+temp2);
}
</script>
今天需要批量改掉图片的扩展名,从小写的png改成大写的PNG!
当然用ACDSEE完全可以实现。
不过我们如果图方便省事,不去下载ACDSEE也行。
用如下命令即可:ren *.png *.PNG!
转自:http://www.wtwlb.com/article.asp?id=263
写的很精彩!
盒子标签和属性对照CSS语法 (不区分大小写) Javascript语法 (区分大小写)
border border border-bottom borderBottom border-bottom-color borderBottomColor border-bottom-style borderBottomStyle border-bottom-width borderBottomWidth border-color borderColor borde ...