我正在进行高级搜索.. 从这里显示列表的这些搜索结果..
从列表中,我将进入详细页面,我想在其中添加返回按钮,单击它会返回到我的搜索结果页面......这是实现的方式吗?
我已经尝试使用 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();
}
问候