我想在检查窗口中的特定URL后在标题中动态添加css href链接。例如
当我打开
b2
css href链接动态加载/添加标头
red.abc.com
并
<link href="red.css" rel="stylesheet">
此CSS链接应被禁用或删除。
答案 0 :(得分:0)
您可以使用php轻松地做到这一点。获取您的网址,然后将其爆炸并加入您所需的部分。当您获得该零件时,将其添加到变量中并放置在链接中
$url = $_SERVER['REQUEST_URI'];
$urlExploded = explode($url, '.');
$link = $urlExploded[1];
<link href="/css/<?php echo $link ?>.css">
我在JS上使用这些标签的经验不是很好,所以也许有些JS家伙可以为您提供帮助。
答案 1 :(得分:0)
console.log(window.location.origin)
您可以添加您的条件:
if(window.location.origin == "example.com")
// condition
答案 2 :(得分:0)
这可以帮助您在页面中添加预期的链接。
DataList