首页 > 代码库 > JS控制css
JS控制css
<style> #div1 {position:absolute;left:20px;top:30px;width:20px;height:30px;background-color:red} .red{color: red} .blue{color: blue} </style> <script> var d = 100; function test() { var a = document.getElementById("div1"); a.style.backgroundColor = "blue"; d += 10; a.style.left = d+"px"; } </script> <script> var d = 100; function test1() { var a = document.getElementById("div1"); a.style.backgroundColor = "blue"; d += 10; a.style.left = d+"px"; } function test2() { var a = document.getElementById("div0"); a.className = "blue";//样式的装换 } </script> <body onkeypress="ff(event)"> <!-- <input type="button" value="http://www.mamicode.com/测试" onclick="ff(event)"> --> <div id = div0 class = "red">aaaa</div> <div id = div1> </div> <input type="button" value="http://www.mamicode.com/测试1" onclick="test1()"> <input type="button" value="http://www.mamicode.com/测试2" onclick="test2()"> </body>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。