标签:style class blog code java http
<script type="application/javascript">
function request(paras) {
var url = location.href;
var paraString = url.substring(url.indexOf("?") + 1, url.length).split("&");
var paraObj = {}
for ( i = 0; j = paraString[i]; i++) {
paraObj[j.substring(0, j.indexOf("=")).toLowerCase()] = j.substring(j.indexOf("=") + 1, j.length);
}
var returnValue = paraObj[paras.toLowerCase()];
if ( typeof (returnValue) == "undefined") {
return "";
} else {
return returnValue;
}
}
</script>
例:http://XXX/mobile/NewsView.htm?action=notice&id=1
action=request("action")
id=request("id")
标签:style class blog code java http
原文地址:http://www.cnblogs.com/liuswi/p/3784031.html