js中location获取上一页的值

发布时间:2019-08-25编辑:脚本学堂
分享一个js中使用location获取上一页值的小例子,学习下js location的用法,有需要的朋友参考下。

本节内容:
js中location获取上一页中的值。

例子:
 

复制代码 代码示例:
<script type="text/javascript">
function showhash() {
    var b = window.location.hash;
    alert(b);
}
function showsearch() {
    var a = window.location.search;
    alert(a);
}
</script>
</head>
<body>
    <input id="Button3" type="Hash" value="button" onclick="showhash()"/>
    <input id="Button2" type="button" value="button" />
    <input id="Button1" type="button" value="Search获取上一页的name和age的值" onclick="showsearch()"/>
</body>