1,查找地址栏特定参数值:
<script>
function getmyvalue(param){
 var x = window.location.href.match(new RegExp('[?&]' + param + '=([^&]+)(&|$)'));
 return x ? x[1] : '';
}
</script>

2,js的escape,可以返回中文unicode编码串[将"%"替换成"\"即可用于js,避免编码中文导致的js错误]
网页源代码:test.html

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 1</title>
<script type=text/javascript>
function test()
{
//alert(document.getElementById("tt").value);
//alert(encodeURI(document.getElementById("tt").value));
document.getElementById("t2").value=escape(document.getElementById("tt").value);
}
function test2()
{
//alert(document.getElementById("tt").value);
//alert(encodeURI(document.getElementById("tt").value));
document.getElementById("t3").value=unescape(document.getElementById("t2").value);
}

</script>
</head>

<body>
<input type=text id=tt name=tt />
<input type=button value=ch onclick="test()"/>
<input type=text id =t2 name=t2/>
<input type=button value=ch2 onclick="test2()"/>
<input type=text id =t3 name=t3/>
</body>

</html>


3,window.onload事件

可能你也碰到过这种情况,就是在js的代码中用了window.onload后,可能会影响到body中的onload事件。你可以全写在body中,也可以全放到window.onload中,但是这样并不是很方便,有时我们需要两个同时用到。这时就要用window.attachEvent和window.addEventListener来解决一下。

下面是一个解决方法。至于attachEvent和addEventListener的用法,可以自己Google或百度一下。

if (document.all){
window.attachEvent('onload',函数名)//IE中
}else{
window.addEventListener('load',函数名,false);//firefox
}
在近来的工作中,用到了attachEvent方法,该方法可以为某一事件附加其它的处理事件,有时候可能比较有用,这里将其基本用法总结一下。

其语法可以查看《DHTML手册》,里面有详细的说明,这里贴一个例子,该例子来自互联网:

document.getElementById("btn").onclick = method1;
document.getElementById("btn").onclick = method2;
document.getElementById("btn").onclick = method3;
如果这样写,那么将会只有medhot3被执行

写成这样:
var btn1Obj = document.getElementById("btn1");
//object.attachEvent(event,function);
btn1Obj.attachEvent("onclick",method1);
btn1Obj.attachEvent("onclick",method2);
btn1Obj.attachEvent("onclick",method3);
执行顺序为method3->method2->method1


如果是Mozilla系列,并不支持该方法,需要用到addEventListener
var btn1Obj = document.getElementById("btn1");
//element.addEventListener(type,listener,useCapture);
btn1Obj.addEventListener("click",method1,false);
btn1Obj.addEventListener("click",method2,false);
btn1Obj.addEventListener("click",method3,false);
执行顺序为method1->method2->method3