博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
修改html页面内css引入路径
阅读量:4980 次
发布时间:2019-06-12

本文共 385 字,大约阅读时间需要 1 分钟。

html:

<link id="dubboKeeperTheme" rel="stylesheet" href="" media="screen">

 

js:

function setTheme(themeName){

  var themeUrl = "";

  if('default'==themeName){
    themeUrl="";
  }else{
    themeUrl="css/libs/themes/"+themeName+"/bootstrap.css"
  }
  window.document.getElementById('dubboKeeperTheme').setAttribute('href',themeUrl);

}

转载于:https://www.cnblogs.com/dapengFly/p/7513416.html

你可能感兴趣的文章
12 | 从0到1:你的第一个GUI自动化测试
查看>>
Python图形图像处理库的介绍之Image模块
查看>>
2017/12/27java基础学习——代码错误分析
查看>>
Html Document窗口的尺寸和位置
查看>>
CodeForces Round #279 (Div.2)
查看>>
leetcode 696. 计数二进制子串(Count Binary Substrings)
查看>>
快速幂取模
查看>>
ajax Post方式并返回json字符串提示
查看>>
PHP print_r($_SERVER)
查看>>
原码, 反码, 补码 详解
查看>>
在Eclipse打开css文件时,会自动调用文本编辑器打开,而不是在Eclipse中打开
查看>>
uboot主Makefile之11——源码目录下mkconfig和config.mk文件的区别
查看>>
IOS 总结:NSArray,NSSet,NSDictionary
查看>>
【资料】栈的实现
查看>>
新手如何学习网站建设制作网站
查看>>
php调用外部exe文件system和exec
查看>>
Android notification详解
查看>>
Hive体系结构
查看>>
软工作业 6:软件设计—— 用户体验(案例分析)
查看>>
话说多线程
查看>>