1.网页换肤:

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<link id="l1" rel="stylesheet" type="text/css" href="css1.css" />
<script>
function skin1()
{
    var oL=document.getElementById('l1');
    
    oL.href='css1.css';
}

function skin2()
{
    var oL=document.getElementById('l1');
    
    oL.href='css2.css';
}
</script>
</head>

<body>
<input type="button" value="皮肤1" onclick="skin1()" />
<input type="button" value="皮肤2" onclick="skin2()" />
</body>
</html>
View Code

相关文章:

  • 2021-07-08
  • 2021-08-26
  • 2021-04-08
  • 2022-02-09
  • 2022-12-23
  • 2021-10-27
  • 2021-12-15
  • 2021-05-01
猜你喜欢
  • 2021-06-25
  • 2021-08-25
  • 2021-05-17
  • 2021-09-29
  • 2021-05-19
  • 2022-02-07
  • 2022-01-01
相关资源
相似解决方案