很讨厌写jvascript,浪费时间又繁琐,但有时候不得不写。javascript作为一种动态语言有些函数都不提供,记录如下。
1. trim(),js是没有trim(),要实现,用正则吧。
2. array.remove(),js没有提供对数组的删除方法。我实现了一个:
function arrayRemove(array,index){
if(index>=array.length){
return;
}
for(var i=index;i<array.length-1;++i){
array[i]=array[i+1];
}
array[array.length-1]=null;
--array.length;
}
3. 获取HTML的自定义元素,firefox和IE不一样。
firefox不能直接: note.attribute.
firefox/IE: note.attributes['photoName'].nodeValue
4. js居然木有replaceALL()!!!!。擦,往上找的实现:
replace(new RegExp("等","gm"),"想");
5. 为对象增加方法
String.prototype.replaceAll = function(s1,s2){
return this.replace(new RegExp(s1,"gm"),s2);
}
6. setTimeout兼容性问题
在IE可以这样写:window.setTimeout(alert('ok');,2000);
在firefox上面代码无效,必须:window.setTimeout(function(){alert('ok');},2000);