使用Javascript將相對路徑地址轉換為絕對路徑

ourjs發表於2014-03-12

  這裡介紹的其實本質上是兩種方法,通過建立DOM或通過JavaScript計算:

  1)通過新建立的Image, 經測試會傳送一個Aborted的請求,並且IE6不支援, 將new Image改成document.createElement('IMG')也是一樣的;測試應該不喜歡這個方案;

function getAbsoluteUrl(url){
    var img = new Image();
    img.src = url;  // 設定相對路徑給Image, 此時會傳送出請求
    url = img.src;  // 此時相對路徑已經變成絕對路徑
    img.src = null; // 取消請求
    return url;
}

getAbsoluteUrl("showroom/list");

  2)建立Anchor(連結),這種方法不會發出任何請求(請求會在加入DOM時產生),但是IE6也不支援

function getAbsoluteUrl(url) {
    var a = document.createElement('A');
    a.href = url;  // 設定相對路徑給Image, 此時會傳送出請求
    url = a.href;  // 此時相對路徑已經變成絕對路徑
    return url;
}

getAbsoluteUrl("showroom/list");

  3)使用JavaScript: 實現起來比較複雜,這裡有一個例子,摘自: https://gist.github.com/1088850

/*jslint regexp: true, white: true, maxerr: 50, indent: 2 */

function parseURI(url) {
  var m = String(url).replace(/^\s+|\s+$/g, '').match(/^([^:\/?#]+:)?(\/\/(?:[^:@]*(?::[^:@]*)?@)?(([^:\/?#]*)(?::(\d*))?))?([^?#]*)(\?[^#]*)?(#[\s\S]*)?/);
  // authority = '//' + user + ':' + pass '@' + hostname + ':' port
  return (m ? {
    href     : m[0] || '',
    protocol : m[1] || '',
    authority: m[2] || '',
    host     : m[3] || '',
    hostname : m[4] || '',
    port     : m[5] || '',
    pathname : m[6] || '',
    search   : m[7] || '',
    hash     : m[8] || ''
  } : null);
}

function absolutizeURI(base, href) {// RFC 3986

  function removeDotSegments(input) {
    var output = [];
    input.replace(/^(\.\.?(\/|$))+/, '')
         .replace(/\/(\.(\/|$))+/g, '/')
         .replace(/\/\.\.$/, '/../')
         .replace(/\/?[^\/]*/g, function (p) {
      if (p === '/..') {
        output.pop();
      } else {
        output.push(p);
      }
    });
    return output.join('').replace(/^\//, input.charAt(0) === '/' ? '/' : '');
  }

  href = parseURI(href || '');
  base = parseURI(base || '');

  return !href || !base ? null : (href.protocol || base.protocol) +
         (href.protocol || href.authority ? href.authority : base.authority) +
         removeDotSegments(href.protocol || href.authority || href.pathname.charAt(0) === '/' ? href.pathname : (href.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()方法:

//返回絕對路徑,jQuery物件實質上是"類陣列"結構(類似arguments),因此使用[0]可以訪問到原生態的物件,然後取"href";
console.log($anchor[0]["href"]);
//返回原始路徑
console.log($anchor.attr("href"));

相關文章