Javascript操作元素属性方法总结
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 |
<!DOCTYPE html> <head> <meta http-equiv= "Content-Type"
content= "text/html; charset=utf-8" /> <title></title> </head> <body> <!-- 元素属性的操作 第一种:oDiv.style.display= "none" ; 第二种:oDiv.style[ "display" ]= "none" ; 第三种:Dom方式 Dom方式操作元素的属性 获取:getAttribute(名称); //99%一般用不着他 设置:setAttribute(名称,值); 删除:removeAttribute(名称); --> </body> </html> |
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。