35-通过style对象获取和设置行内样式

style属性的获取和修改

在DOM当中,如果想设置样式,有两种形式:

  • className(针对内嵌样式)

  • style(针对行内样式)

这篇文章,我们就来讲一下style。

需要注意的是:style是一个对象,只能获取行内样式,不能获取内嵌的样式和外链的样式。例如:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. div {
  8. border: 6px solid red;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <div class="box1" style="width: 200px;height: 100px;background-color: pink;"></div>
  14. <script>
  15. var box1 = document.getElementsByTagName("div")[0];
  16. console.log(box1.style.backgroundColor);
  17. console.log(box1.style.border); //没有打印结果,因为这个属性不是行内样式
  18. console.log(typeof box1.style); //因为是对象,所以打印结果是Object
  19. console.log(box1.style); //打印结果是对象
  20. </script>
  21. </body>
  22. </html>

打印结果:

46-通过style对象获取和设置行内样式 - 图1

上图显示,因为border属性不是行内样式,所以无法通过style对象获取。

通过 js 读取元素的样式

语法:(方式一)

  1. 元素.style.样式名

备注:我们通过style属性读取的样式都是行内样式

语法:(方式二)

  1. 元素.style["属性"]; //格式
  2. box.style["width"]; //举例

方式二最大的优点是:可以给属性传递参数。

通过 js 设置元素的样式

语法:

  1. 元素.style.样式名 = 样式值;

举例:

  1. box1.style.width = "300px";
  2. box1.style.backgroundColor = "red"; // 驼峰命名法

备注:我们通过style属性设置的样式都是行内样式,而行内样式有较高的优先级。但是如果在样式中的其他地方写了!important,则此时!important会有更高的优先级。

style属性的注意事项

style属性需要注意以下几点:

(1)样式少的时候使用。

(2)style是对象。我们在上方已经打印出来,typeof的结果是Object。

(3)值是字符串,没有设置值是“”。

(4)命名规则,驼峰命名。

(5)只能获取行内样式,和内嵌和外链无关。

(6)box.style.cssText = “字符串形式的样式”。

cssText这个属性,其实就是把行内样式里面的值当做字符串来对待。在上方代码的基础之上,举例:

  1. <script>
  2. var box1 = document.getElementsByTagName("div")[0];
  3. //通过cssText一次性设置行内样式
  4. box1.style.cssText = "width: 300px;height: 300px;background-color: green;";
  5. console.log(box1.style.cssText); //这一行更加可以理解,style是对象
  6. </script>

打印结果:

46-通过style对象获取和设置行内样式 - 图2

style的常用属性

style的常用属性包括:

  • backgroundColor

  • backgroundImage

  • color

  • width

  • height

  • border

  • opacity 设置透明度 (IE8以前是filter: alpha(opacity=xx))

注意DOM对象style的属性和标签中style内的值不一样,因为在JS中,-不能作为标识符。比如:

  • DOM中:backgroundColor

  • CSS中:background-color

style属性的举例

我们针对上面列举的几个style的样式,来举几个例子:

  • 举例1、改变div的大小和透明度

  • 举例2、当前输入的文本框高亮显示

  • 举例3、高级隔行变色、高亮显示

下面来逐一实现。

举例1:改变div的大小和透明度

代码举例:

  1. <body>
  2. <div style="width: 100px;height: 100px;background-color: pink;"></div>
  3. <script>
  4. var div = document.getElementsByTagName("div")[0];
  5. div.onmouseover = function () {
  6. div.style.width = "200px";
  7. div.style.height = "200px";
  8. div.style.backgroundColor = "black";
  9. div.style.opacity = "0.2"; //设置背景色的透明度。单位是0.1
  10. div.style.filter = "alpha(opacity=20)"; //上一行代码的兼容性写法。注意单位是百进制
  11. }
  12. </script>
  13. </body>

举例2:当前输入的文本框高亮显示

代码实现:

  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7. input {
  8. display: block;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <ul>
  14. <input type="text"/>
  15. <input type="text"/>
  16. <input type="text"/>
  17. <input type="text"/>
  18. <input type="text"/>
  19. </ul>
  20. <script>
  21. //需求:让所有的input标签获取焦点后高亮显示
  22. //1.获取事件源
  23. var inpArr = document.getElementsByTagName("input");
  24. //2.绑定事件
  25. //3.书写事件驱动程序
  26. for (var i = 0; i < inpArr.length; i++) {
  27. //获取焦点后,所有的input标签被绑定onfocus事件
  28. inpArr[i].onfocus = function () {
  29. this.style.border = "2px solid red";
  30. this.style.backgroundColor = "#ccc";
  31. }
  32. //绑定onblur事件,取消样式
  33. inpArr[i].onblur = function () {
  34. this.style.border = "";
  35. this.style.backgroundColor = "";
  36. }
  37. }
  38. </script>
  39. </body>
  40. </html>

举例3:高级隔行变色、高亮显示

  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7. * {
  8. padding: 0;
  9. margin: 0;
  10. text-align: center;
  11. }
  12. .wrap {
  13. width: 500px;
  14. margin: 100px auto 0;
  15. }
  16. table {
  17. border-collapse: collapse;
  18. border-spacing: 0;
  19. border: 1px solid #c0c0c0;
  20. width: 500px;
  21. }
  22. th,
  23. td {
  24. border: 1px solid #d0d0d0;
  25. color: #404060;
  26. padding: 10px;
  27. }
  28. th {
  29. background-color: #09c;
  30. font: bold 16px "微软雅黑";
  31. color: #fff;
  32. }
  33. td {
  34. font: 14px "微软雅黑";
  35. }
  36. tbody tr {
  37. background-color: #f0f0f0;
  38. cursor: pointer;
  39. }
  40. .current {
  41. background-color: red !important;
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <div class="wrap">
  47. <table>
  48. <thead>
  49. <tr>
  50. <th>序号</th>
  51. <th>姓名</th>
  52. <th>课程</th>
  53. <th>成绩</th>
  54. </tr>
  55. </thead>
  56. <tbody id="target">
  57. <tr>
  58. <td>
  59. 1
  60. </td>
  61. <td>生命壹号</td>
  62. <td>语文</td>
  63. <td>100</td>
  64. </tr>
  65. <tr>
  66. <td>
  67. 2
  68. </td>
  69. <td>生命贰号</td>
  70. <td>日语</td>
  71. <td>99</td>
  72. </tr>
  73. <tr>
  74. <td>
  75. 3
  76. </td>
  77. <td>生命叁号</td>
  78. <td>营销学</td>
  79. <td>98</td>
  80. </tr>
  81. <tr>
  82. <td>
  83. 4
  84. </td>
  85. <td>生命伍号</td>
  86. <td>数学</td>
  87. <td>90</td>
  88. </tr>
  89. <tr>
  90. <td>
  91. 5
  92. </td>
  93. <td>许嵩</td>
  94. <td>英语</td>
  95. <td>96</td>
  96. </tr>
  97. <tr>
  98. <td>
  99. 6
  100. </td>
  101. <td>vae</td>
  102. <td>体育</td>
  103. <td>90</td>
  104. </tr>
  105. </tbody>
  106. </table>
  107. </div>
  108. <script>
  109. //需求:让tr各行变色,鼠标放入tr中,高亮显示。
  110. //1.隔行变色。
  111. var tbody = document.getElementById("target");
  112. var trArr = tbody.children;
  113. //循环判断并各行赋值属性(背景色)
  114. for (var i = 0; i < trArr.length; i++) {
  115. if (i % 2 !== 0) {
  116. trArr[i].style.backgroundColor = "#a3a3a3";
  117. } else {
  118. trArr[i].style.backgroundColor = "#ccc";
  119. }
  120. //鼠标进入高亮显示
  121. //难点:鼠标移开的时候要回复原始颜色。
  122. //计数器(进入tr之后,立刻记录颜色,然后移开的时候使用记录好的颜色)
  123. var myColor = "";
  124. trArr[i].onmouseover = function () {
  125. //赋值颜色之前,先记录颜色
  126. myColor = this.style.backgroundColor;
  127. this.style.backgroundColor = "#fff";
  128. }
  129. trArr[i].onmouseout = function () {
  130. this.style.backgroundColor = myColor;
  131. }
  132. }
  133. </script>
  134. </body>
  135. </html>

实现的效果如下:

46-通过style对象获取和设置行内样式 - 图3

代码解释:

上方代码中,我们用到了计数器myColor来记录每一行最原始的颜色(赋值白色之前)。如果不用计数器,可能很多人以为代码是写的:(错误的代码)

  1. <script>
  2. //需求:让tr各行变色,鼠标放入tr中,高亮显示。
  3. //1.隔行变色。
  4. var tbody = document.getElementById("target");
  5. var trArr = tbody.children;
  6. //循环判断并各行赋值属性(背景色)
  7. for (var i = 0; i < trArr.length; i++) {
  8. if (i % 2 !== 0) {
  9. trArr[i].style.backgroundColor = "#a3a3a3";
  10. } else {
  11. trArr[i].style.backgroundColor = "#ccc";
  12. }
  13. //鼠标进入高亮显示
  14. //难点:鼠标移开的时候要回复原始颜色。
  15. //计数器(进入tr之后,立刻记录颜色,然后移开的时候使用记录好的颜色)
  16. trArr[i].onmouseover = function () {
  17. this.style.backgroundColor = "#fff";
  18. }
  19. trArr[i].onmouseout = function () {
  20. this.style.backgroundColor = "#a3a3a3";
  21. }
  22. }
  23. </script>

这种错误的代码,实现的效果却是:(未达到效果)

46-通过style对象获取和设置行内样式 - 图4

通过 js 获取元素当前显示的样式

我们在上面的内容中,通过元素.style.className的方式只能获取行内样式。但是,有些元素,也写了内嵌样式或外链样式

既然样式有这么种,那么,如何获取元素当前显示的样式(包括行内样式、内嵌样式、外链样式)呢?我们接下来看一看。

获取元素当前正在显示的样式

(1)w3c的做法:

  1. window.getComputedStyle("要获取样式的元素", "伪元素");

两个参数都是必须要有的。参数二中,如果没有伪元素就用 null 代替(一般都传null)。

(2)IE和opera的做法:

  1. obj.currentStyle;

注意:

  • 如果当前元素没有设置该样式,则获取它的默认值。

  • 该方法会返回一个对象,对象中封装了当前元素对应的样式,可以通过对象.样式名来读取具体的某一个样式。

  • 通过currentStyle和getComputedStyle()读取到的样式都是只读的,不能修改,如果要修改必须通过style属性。

综合上面两种写法,就有了一种兼容性的写法,同时将其封装。代码举例如下:

  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7. div {
  8. background-color: pink;
  9. /*border: 1px solid #000;*/
  10. padding: 10px;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <div style="width: 100px;height: 100px;"></div>
  16. <script>
  17. var div1 = document.getElementsByTagName("div")[0];
  18. console.log(getStyle(div1, "width"));
  19. console.log(getStyle(div1, "padding"));
  20. console.log(getStyle(div1, "background-color"));
  21. /*
  22. * 兼容方法,获取元素当前正在显示的样式。
  23. * 参数:
  24. * obj 要获取样式的元素
  25. *. name 要获取的样式名
  26. */
  27. function getStyle(ele, attr) {
  28. if (window.getComputedStyle) {
  29. return window.getComputedStyle(ele, null)[attr];
  30. }
  31. return ele.currentStyle[attr];
  32. }
  33. </script>
  34. </body>
  35. </html>

打印结果:

46-通过style对象获取和设置行内样式 - 图5

我的公众号

想学习更多技能?不妨关注我的微信公众号:千古壹号(id:qianguyihao)。

扫一扫,你将发现另一个全新的世界,而这将是一场美丽的意外:

46-通过style对象获取和设置行内样式 - 图6