JS属性style操作 / cssText / innerHtml / tagName / harf / src

JS中两种操作属性的方法

1 点 . (代表“的”)                  元素.属性

box.onclick = function(){

box.style.width='300px'

};

2 方括号[ ]                               元素['属性']                 比较好,可修改

box['onclick'] = function(){

box['style']['width'] = '300px'

}


box.style.fontSize = '36px'

box.style['font-size'] = '36px'

box['style']['font-size'] = '36px'


JS的读与写操作

ele.style.background;        读

ele.style.background = 'red'     写


cssText

cssText 的本质就是设置 HTML 元素的 style 属性值。

box.style.cssText = 'width:300px;height:300px'


innerHtml

属性设置或返回表格行的开始和结束标签之间的 HTML


harf

链接,获取到的是绝对路径


src

图片


tagName

标签,获取到的都是大写字母


你可能感兴趣的:(JS属性style操作 / cssText / innerHtml / tagName / harf / src)