如何将所有“链接相关样式表”相对路径转换为javascript中的绝对路径

时间:2016-07-10 14:44:18

标签: javascript css

如何使用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">

1 个答案:

答案 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