這裡介紹的其實本質上是兩種方法,透過建立DOM或透過JavaScript計算:
1)透過新建立的Image, 經測試會發送一個Aborted的請求,並且IE6不支援, 將new Image改成document.createElement('IMG')也是一樣的;測試應該不喜歡這個方案;
function getAbsoluteUrl(>
function getAbsoluteUrl( new Image();
img.src = url; // 設定相對路徑給Image, 此時會發出請求
url = img.src; // 此時相對路徑已經變成絕對路徑
img.src = null; // 取消要求
return url;
}
getAbsoluteUrl("showroom/list");
2)建立Anchor(連結),這種方法不會發出任何請求(請求會在加入DOM時產生),但是IE6也不支援
程式碼如下:
/*jslint regexp: true, true : 50, indent: 2 */
function parseURI(url) {
var m = String(url).replace(/^s |s $/g, '').match(/^ ([^:/?#] :)?(//(?:[^:@]*(?::[^:@]*)?@)?(([^:/?#]*)( ?::(d*))?))?([^?#]*)(?[^#]*)?(#[sS]*)?/);
// authority = '// ' user ':' pass '@' hostname ':' port
return (m ? {
href : m[0] || '',
protocol : m[0] || '',
protocol : m[1] || ,
protocol : m[1] ||
authority: m[2] || '',
host : m[3] || '',
hostname : m[4] || '',
hostname : m[4] || '',
host ] || '',
pathname : m[6] || '',
search : m[7] || '',
} : null);
}
function absolutizeURI(base, href) {// RFC 3986
function removeDotSegments(input) {
> input.replace(/^(..?(/|$)) /, '')
.replace(//(.(/|$)) /g, '/') (//..$/, '/../')
.replace(//?[^/]*/g, function (p) {
if (p === '/.. ') {
output.pop();
} else {
return output.join(''). replace(/^//, input.charAt(0) === '/' ? '/' : '');
}
href = parseURI(href || '');
base = parseURI(base || '');
return !href || !base ? null : (href.protocol || base.protocol) removeDotSegments(href.protocol || href.authority || href.pathname.charAt(0) === '/' href.pathname> (href.path.pathname ? (base.authority && !base.pathname ? '/' : '') base.pathname.slice(0, base.pathname.lastIndexOf('/') 1) href.pathname) : base.pathname))
(href.protocol || href.authority || href.pathname ? href.search : (href.search || base.search))
href.hash;
}
因我們的產品為手機端網頁,早已不支援IE6,最終使用的是第二種方案;
由此可見,用原生態的方法訪問所有的Image, Anchor時,返回的都是絕對路徑,此時如果想返回原來的相對路徑,可以用查詢DOM的方法,如jQuery.attr()方法:
//回傳絕對路徑,jQueryconsole.log($anchor[0]["href"]);
//返回原始路徑
console.log($anchor.attr("href"));