1、获取行内(内嵌、行间)样式:

  1. obj.style.attr;进行获取非行间样式。

2、设置行内样式:

  1. obj.style.attr = value;

3、举例:

  1. var box = document.getElementById('box');
  2. box.style.width = '100px';
  3. box.style.height = '100px';
  4. box.style.backgroundColor = 'red';
  5. //通过样式属性设置宽高、位置的属性类型是字符串,需要加上px
  1. <br />