1.删除浏览器url参数
var url = window.location.href;
url = url.split('?')[0];
window.history.pushState({}, 0, url);
2.base64加密和解密
//解密
window.atob(url)
//加密
window.btoa(url)
3.获取浏览器url
var url;
url = window.location.href; /* 获取完整URL */
console.log(url); /* http://localhost:8080/index.html#a?a=xxxx*/
url = window.location.pathname; /* 获取文件路径(文件地址) */
console.log(url); /* /index.html */
url = window.location.protocol; /* 获取协议 */
console.log(url); /* http */
url = window.location.host; /* 获取主机地址和端口号 */
console.log(url); /* http://localhost:8080/ */
url = window.location.hostname; /* 获取主机地址 */
console.log(url); /* http://localhost/ */
url = window.location.port; /* 获取端口号 */
console.log(url); /* 8080 */
url = window.location.hash; /* 获取锚点(“#”后面的分段) */
console.log(url); /* #a?a=xxxx */
url = window.location.search; /* 获取属性(“?”后面的分段) */
console.log(url);
/* 如果需要URL中的某一部分,可以自己进行处理 */
url = window.location.pathname;
url = url.substring(url.lastIndexOf('/') + 1, url.length);
console.log(url); /* /index.html */
/*
* 如果页面使用了框架(frameset)
* 要获取到指定页面的URL
* 只要把window换成指定的页面即可
*/
/* 'frame'为指定页面的class名 */
var url = window.parent.frames['frame'].location.href;
/* 获取当前地址栏中显示的URL */
var url = window.parent.location.href;
/* window parent 可互换 */
var url = parent.window.location.href;