js获取上一页、当前页及域名url方法,JS反回上一页的方法

2017-12-08 07:13:35
<html>
<head>
<title>js获取上一页url,js获取前一页地址,javascripts获取上一页url,javascript获取前一页地址</title>
<meta http-equiv="keywords" content="" />
</head>
<body>
<script language="javascript">
document.write("js获取当前域名"+window.location.host+"或者"+document.domain+"<br>");
document.write("js获取当前url"+window.location.href+"<br>");
document.write("js获取上(前)一页url"+document.referrer);
</script>
</body>
</html>



以上是获取的代码,以下是具本的应用:

 

在<body>中插队入

<script language="javascript">
function goUrl(){
window.location.href=document.referrer;
}
</script>

然后在返回链接上这样写:

<a href="javascript:goUrl();">返回上一页</a>


  • 2018-01-26 01:05:22

    Android在thread中Toast不能显示问题解决

    一般如果不是在主线程中又开启了新线程的话,一般都会碰到这个问题。 原因是在创建新线程的时候默认情况下不会去创建新的MessageQueue。