5通过js代码设置css样式

Posted 红酒人生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5通过js代码设置css样式相关的知识,希望对你有一定的参考价值。

1、页面

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 <html xmlns="http://www.w3.org/1999/xhtml">
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 5 <title>通过js设置css样式</title>
 6 
 7 </head>
 8 <body>
 9 <input type="button" value="隐藏p标签" onclick="disP()"/>
10 <p>
11 今天晚上好好预习jQuery,预计从明天开始会上5次基础的jQuery
12 </p>
13 <script type="text/javascript">
14 function disP(){
15     document.getElementsByTagName("p")[0].style.display="none";
16     //document.getElementsByTagName("p")[0].style.color="red";
17 }
18 </script>
19 </body>
20 </html>

2、效果图

启动

点击“隐藏p标签”

以上是关于5通过js代码设置css样式的主要内容,如果未能解决你的问题,请参考以下文章

CSS代码片段

CSS代码片段

HTML JS动态设置CSS样式

设置css样式的方法

使页面元素始终靠屏幕的右边,是使JS还是用CSS样式设置

如何用JS给div添加样式