跳转到b页面
b.html:
This is page B.
2.a.html:
跳转到b页面
b.html:
This is page B.
3.a.html:
跳转到b页面
出现中文乱码情况解决办法:
b.html:
This is page B.
4.定义成js方法:
utils.js:
function getUrlParam(key){
var url = decodeURI( window.location.toString() );
var arr = url.split("?");
if(arr.length>1){
var params = arr[1].split("&");
for(var i=0;i
b.html:
This is page B.



