如何使用javascript将html的相对路径中的所有“link rel stylesheet”转换为绝对路径?
前
<link rel="stylesheet" type="text/css" href="/sample.css">
我想要的东西
<link rel="stylesheet" type="text/css" href="http://sample.com/sample.css">
答案 0 :(得分:0)
使用href
属性值设置href
属性:
link.setAttribute("href", link.href); // won't work in old IE
,或将href
属性设置为:
link.href = link.href; // maybe different for each browser