导航

window.location.hash 原来是这作用

Posted on 2012-09-19 16:36  surealland  阅读(630)  评论(0编辑  收藏  举报

页面无刷新修改url.便于ajax页面定位。

window.location.href;//"http://www.cnblogs.com/surealland/admin/EditPosts.aspx?opt=1";

window.location.hash='#test';

window.location.href;//"http://www.cnblogs.com/surealland/admin/EditPosts.aspx?opt=1#test"

场景:例如页面加载时,判断window.location.hash定位到上次浏览的位置。(当前为chrome.其他浏览器支持情况未测。)