利用js中window对象的location子对象的pathname属性,返回url所对应的网页文件的虚拟路径,其中包括网页文件的文件名。用法如下: var str = window.location.pathname在你举的例子中少了个端口号应该http://hostname:port/index.html 这时str 的值就为 /index.html如果目录更深如http://hostname:port/wtccut/index.html 那么str 的值就为 /wtccut/index.htmlstr为网页文件的虚拟路径,如果不是你要的值你可以通过正则表达式继续截取。你可以用var str = window.location.hostname 获得主机名或ip地址var str = window.location.port 获得端口号