去除地址栏中url的参数

	$(function(){
		var url=window.location.href;                    //获取当前页面的url
		if(url.indexOf("?")!=-1){                        //判断是否存在参数
			url = url.replace(/(\?|#)[^'"]*/, '');           //去除参数
			window.history.pushState({},0,url);
		}
	})

你可能感兴趣的:(去除地址栏中url的参数)