我在CSS文件中有这个:
#tabs .bg {
background: url("../images/bg-tabs-r.gif") no-repeat scroll 100% 0 transparent;
height: 39px;
line-height: 42px;
overflow: hidden;
width: 100%;
}
通过JavaScript,如何将background
更改为空白颜色,将line-height
更改为28px
。
答案 0 :(得分:4)
如果您使用jQuery(您应该),这很容易:
$('#tabs .bg').css({'background': 'none', 'line-height': '28px'});
答案 1 :(得分:3)
直接在元素上使用它:
mytab=document.getElementById("tabs");
mytab.style.background="white";
mytab.lineHeight="28px";