<!DOCTYPE HTML><html><head> <meta charset="UTF-8"> <title></title> <style type="text/css"> h2 {background:#ccc;} </style></head><body> <h2 style="font-size:40px; color:red; background-color:black;">js控制行内样式</h2> <script type="text/javascript"> var hh2 = document.getElementsByTagName('h2')[0]; </script> <script type="text/javascript"> var h2 = document.getElementsByTagName('h2')[0]; console.log( h2.style ); //console.log( h2.style[1] ); //不建议这么用 console.log( h2.style.color ); </script></body></html>
1 回答
呼如林
TA贡献1798条经验 获得超3个赞
比如说,你左手大拇指的指甲,用对象属性表示就是 你.左手.大拇指.指甲
。
如果只说 大拇指.指甲
,谁知道是哪一个?又有谁知道是你的……
所以定位一个属性,要从我们已知的某个对象(对象引用)开始,往下寻找。
顺便提一下,这里提到的引用,就好比一个代词“你”、“我”、“他”,或者名称“John”之类的,当然程序里一般称为变量。
添加回答
举报
0/150
提交
取消