码迷,mamicode.com
首页 > 编程语言 > 详细

javascript教程系列40:DOM中操作样式的两种方式

时间:2018-05-08 14:36:35      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:style   width   height   class   java   strong   css   span   size   

1 DOM中操作样式的两种方式

1 通过元素的style属性

注意: 通过style属性设置样式时,css中要写单位的属性,在js代码中也要加单位

//html
<div id="box"></div>

//js
var box = document.getElementById(‘box‘);
box.style.width = ‘100px‘;
box.style.height = ‘100px‘;
box.style.backgroundColor = ‘red‘;

<div id="box" style="width:100px; height:100px; background-color:red">

 

2 通过元素的className属性

//html
<div id="box"></div>

//css
.show{
     width:100px;
     height:100px:
     background-color:red;
}

//js
var box = document.getElementById(‘box‘);
box.className = ‘show‘;

javascript教程系列40:DOM中操作样式的两种方式

标签:style   width   height   class   java   strong   css   span   size   

原文地址:https://www.cnblogs.com/autoXingJY/p/9007425.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!