javascript window.*

参考:http://www.5idev.com/p-javascript_location_reload.shtml

1.location对象:获取或设置当前的URL信息

location.hash 属性:设置或取得当前URL中的锚
实例:*.html#back
var anchor = location.hash;    得到URL中的锚    结果:back

location.hash = "go";        设置URL中的锚    结果:*.html#go


2.location.href 属性:设置或取得当前完整的 URL(页面跳转)

3.location.protocol 属性:设置或取得当前 URL 的协议

var protocol = location.protocol;
http:

4.location.search 属性:设置或取得当前 URL 的查询字串
例子 1
*.html?part=1
var part =location.search;
输出: ?part=1


例子 2
location.search = "?part=2";
输出: *.html?part=2


document domain 属性:得到当前文档的域名
var domain = document.domain

document referrer 属性:得到上一页的 URL 地址
var referrer = document.referrer
提示:如果当前文档不是通过超级链接访问的,则为空。

History 对象:浏览器访问历史,history.back()、history.forward()与history.go()方法
history.back():返回前一个浏览页面(如果存在)
history.forward():前往下一个浏览页面(如果存在)
history.go( number|URL ):前往 history 列表中的某个指定页面(如果存在)

posted @ 2014-10-29 11:17  microsoftzhcn  阅读(311)  评论(0编辑  收藏  举报