在html中,常见的url有多种表示方式:
相对url:
example.php
demo/example.php
./example.php
../../example.php
/example.php
绝对url:
http://dancewithnet.com/example.php
http://dancewithnet.com:80/example.php
https://dancewithnet.com/example.php
同时html中有大量的元素属性值为url,一般利用javascript获取这些url属性值有两种方法:
<a href="example.php" id="example-a">此时页面绝对url是http://dancewithnet.com/</a>
<script>
var oa = document.getelementbyid('example-a');
oa.href == 'http://dancewithnet.com/example.php';
oa.getattribute('href') == 'example.php';
</script>
我们希望通过直接访问属性的方式得到完整绝对url,通过getattribute方法得到其原始的属性值,实际上这是一个比较理想的结果,在所有的a级浏览器中,能顺利得到这个结果的只有firefox和ie8,其他浏览器都或多或少特殊情况,具体哪些元素的属性存在什么样的情况请看 演示实例 。
在大部分浏览器中存在的问题是,两种方式都返回的是原始属性值,而实际应用中往往需要的是其绝对的url,《dealing with unqualified href values》中的解决方案太过于复杂,这里提供一种相对简单的解决方案,如果不考虑区别浏览器代码会非常简单:
<form action="example.php" id="example-form">
此时页面绝对url是http://dancewithnet.com/</form>
<script>
var oform = document.getelementbyid('example-form');
//ie6、ie7、safari、chrome、opera
oform.action == 'example.php';
oa.getattribute('action') == 'example.php';
//获取绝对url的通用解决方案
getqualifyurl(oform,'action') == 'http://dancewithnet.com/example.php';
getqualifyurl = function(oel,sattr){
var surl = oel[sattr],
od,
bdo = false;
//是否是ie8之前版本
//http://www.thespanner.co.uk/2009/01/29/detecting-browsers-javascript-hacks/
//http://msdn.microsoft.com/en-us/library/7kx09ct1%28vs.80%29.aspx
/*@cc_on
try{
bdo = @_jscript_version < 5.8 ?true : @false;
}catch(e){
bdo = false;
}
@*/
//如果是safari、chrome和opera
if(/a/.__proto__=='//' || /source/.test((/a/.tostring+''))
|| /^function /(/.test([].sort)){
bdo = true;
}
if(bdo){
od = document.createelement('div');
/*
//dom 操作得到的结果不会改变
var oa = document.createelement('a');
oa.href = oel[sattr];
od.appendchild(oa);
*/
od.innerhtml = ['<a href="',surl,'"></a>'].join('');
surl = od.firstchild.href;
}
return surl;
}
</script>
在ie6和ie7这两个史前的浏览器身上还有一些更有意思的事情,两种方法在html元素a、area和img获取的属性值都是绝对url,幸好 微软为getattribute提供了第二个参数 可以解决这个问题,同时还可以对ifeam和link元素解决前面提到的两种方法都返回原始属性的问题:
<link href="../../example.css" id="example-link">
<a href="example.php" id="example-a">此时页面绝对url是http://dancewithnet.com/</a>
<script>
var oa = document.getelementbyid('example-a'),
olink = document.getelementbyid('example-a');
oa.href == 'http://dancewithnet.com/example.php';
oa.getattribute('href') == 'http://dancewithnet.com/example.php';
oa.getattribute('href',2) == 'example.php';
olink.href == 'example.php';
olink.getattribute('href') == 'example.php';
olink.getattribute('href',4) == 'http://dancewithnet.com/example.php';
</script>
新闻热点
疑难解答