当前位置: 代码迷 >> JavaScript >> 急救!解决办法
  详细解决方案

急救!解决办法

热度:230   发布时间:2012-02-28 13:06:35.0
急救!!!!
在javascript里怎么取得本页面的绝对路径??????


------解决方案--------------------
window.location.href 设置或获取整个URL字符串。
window.location.protocol 设置或获取URL的协议部分。
window.location.hash 设置或获取href属性中在#号后面的分段。
window.location.host 设置或获取URL的hostname和port号码。
window.location.hostname 设置或获取URL的主机名称部分。
window.location.pathname 设置或获取对象指定的文件名或路径。
window.location.port 设置或获取与URL关联的端口号码。
window.location.search 设置或获取href属性中跟在?号后面的部分。
------解决方案--------------------
var directory = document.location;
------解决方案--------------------
这样 "file:// "+window.location.pathname
  相关解决方案