js改变style样式和css样式的简单实例
更新时间:2016年06月28日 10:43:15 投稿:jingxian
下面小编就为大家带来一篇js改变style样式和css样式的简单实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
js可实现用户对页面中的选择条件改变页面中的样式,页面样式可以通过style修饰,也可以通过css修饰,先来看一下js改变style样式,代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Change.html</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <!--<link rel="stylesheet" type="text/css" href="./styles.css">--> <script language="javascript"> function test4(event) { if(event.value == "黑色") { //获取div1 var div1 = document.getElementById('div1'); div1.style.backgroundColor="black"; } if(event.value == "红色") { //获取div1 var div1 = document.getElementById('div1'); div1.style.backgroundColor="red"; } } </script> </head> <body> <div id="div1" style="width:400px; height:300px; background-color:red;">div1</div> <input type="button" value="黑色" onclick="test4(this)"/> <input type="button" value="红色" onclick="test4(this)"/> </body> </html>
test4(this)代表当前的<input相当于把它看成一个对象。
再来看一下改变css样式,代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Change1.html</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="css/Change.css"> <script language="javascript"> function test4(event) { //获取样式表中所有class选择器都获得 var ocssRules = document.styleSheets[0].rules; //从ocssRules中取出你希望的class var style1 = ocssRules[0]; if(event.value == "黑色") { //window.alert(style1.style.backgroundColor); style1.style.backgroundColor="black"; }else if(event.value == "红色") { style1.style.backgroundColor="red"; } } </script> </head> <body> <div id="div1" class="style1">div1</div> <input type="button" value="黑色" onclick="test4(this)"/> <input type="button" value="红色" onclick="test4(this)"/> </body> </html>
以上就是小编为大家带来的js改变style样式和css样式的简单实例全部内容了,希望大家多多支持脚本之家~
相关文章
微信小程序完美解决scroll-view高度自适应问题的方法
这篇文章主要介绍了微信小程序完美解决scroll-view高度自适应问题的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-08-08JavaScript基于扩展String实现替换字符串中index处字符的方法
这篇文章主要介绍了JavaScript基于扩展String实现替换字符串中index处字符的方法,涉及javascript使用substr方法针对字符串进行替换操作的相关实现技巧,需要的朋友可以参考下2017-06-06YUI Compressor压缩JavaScript原理及微优化
最近写一个jQuery插件,在最后完成优化时,对比发现压缩后文件比较大,就思考那些是可以被修改和优化的,发现压缩原理也有很大的空间可以学习2013-01-01
最新评论