我正在寻找JQuery或普通旧Javascript的库/扩展,它将通过ajax加载部分,但是将所有相对路径更改为相对于它加载到的地址,而不是从<。 / p>
我已经探索过使用iFrame,但我正在为Google Chrome进行扩展,由于存在一些限制因素,该选项无法实现。使用base
代码并不是一个选项,因为它会针对整个页面进行更改。
答案 0 :(得分:0)
您是否在寻找获取网页网址的方法,以便保留基本网址并动态更改路径?
以下内容将获取该信息
如果网址是这样的
http://www.mywidget.com/Lets/Play/Games
This one here will get the full URL of http://www.mywidget.com/Lets/Play/Games
var urlHref = window.location.href;
This one here will get the Host Name of www.mywidget.com
var urlHostName = window.location.hostname;
This one here will return the pathname of /Lets/Play/Games
var urlPathName = window.location.pathname;