demo.htm<a href="aa.htm?action=y">Test</a><script>
function getvalue() {
var locationhref=document.location.href;
var s=locationhref.split("?");
var s1=s[1].split("=");
alert(s1[0]+"="+s1[1]);
}
</script>
<body onload="getvalue()">
ok
</body>