首页 > 代码库 > js网页换肤
js网页换肤
使网页背景颜色可选黄/粉
<html> <head> <meta charset="utf-8"> <meta name="generator" content="HTML Tidy for HTML5 (experimental) for Windows https://github.com/w3c/tidy-html5/tree/c63cc39" /> <title>网页换肤</title> <link id="ly" rel="stylesheet" type="text/css" href="css1.css"> <script> function skin1(){ var oL=document.getElementById(‘ly‘); oL.href=‘css1.css‘;}function skin2(){ var oL=document.getElementById(‘ly‘); oL.href=‘css2.css‘;} </script> </head> <body> <input type="button" value="黄" onclick="skin1()"/> <input type="button" value="粉" onclick="skin2()"/> </body></html>
黄
body{background:#FFD39B;}input{width:25px;height:25px;background:yellow;}
粉
body{background:pink;}input{width:25px;height:25px;background:red;}
js网页换肤
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。