javaScriptDay02

作者:gqk;

 JS中自定义属性

  • getAttribute() 获取标签行内属性
  • setAttribute() 设置标签行内属性
  • removeAttribute() 移除标签行内属性

样式操作

1,设置类(className)

2,设置style:javascript var box = document.getElementById('box'); box.style.width = '100px'; box.style.height = '100px'; box.style.backgroundColor = 'red';

案例:

  • 开关灯
  • 图片切换二维码案例
  • 当前输入的文本框高亮显示
  • 点击按钮改变div的大小和位置
  • 列表隔行变色、高亮显示
  • tab选项卡切换

JavaScript HTML DOM 节点列表:

猜你喜欢

转载自www.cnblogs.com/520gqk/p/9483790.html
02