var resolve = function() {
var iframe = document.createElement('iframe');
iframe.style.cssText = 'position:absolute; left:-1000px; top:-1000px;';
document.body.appendChild(iframe);
return function(path1, path2) {
iframe.contentWindow.document.write("<html><head><base href='"+path1+"'/></head><body><a href='"+path2+"'>a</a></body></html>");
return iframe.contentWindow.document.body.firstChild.href;
};
}();
resolve('http://www.linjunhai.com/blog/article.asp?id=183', '../a/b/c.html');
// [url]http://www.linjunhai.com/a/b/c.html[/url] |