我正在进行高级搜索..从这里搜索结果显示列表..
从列表中我将进入详细信息页面,我想要添加返回按钮点击它,它将返回到我的搜索结果页面...这是实现方式吗?
我已尝试使用hashchange但未成功...我的事情哈希更改取决于div不基于不同的页面..我应该如何使用搜索结果实现后退按钮?
function goBack()
{
alert(location.hash);
// Bind the event.
$(window).hashchange(function () {
// Alerts every time the hash changes!
alert(location.hash);
})
// Trigger the event (useful on page load).
$(window).hashchange();
}
此致
答案 0 :(得分:0)
尝试
function goBack()
{
window.history.back()
}