2个html页面传值
1.html<script type="text/javascript"> function onUrl(id){ window.location.href="${base}/html/2.html?typeId=1"; }</script>2.htmlvar strHref=location.search; var id=getArgsFromHref(strHref,'typeId');alert(id);getValue.jsfunction getArgsFromHref(sHref, sArgName){ var args = sHref.split("?");var retval = ""; if(args[0] == sHref){ return retval;} var str = args[1]; args = str.split("&"); for(var i = 0; i < args.length; i ++) {str = args[i];var arg = str.split("="); if(arg.length <= 1) continue; if(arg[0] == sArgName) retval = arg[1]; }return retval;}?