用JavaScript修改CSS屬性的代碼

來源:互聯網
上載者:User

用JavaScript修改CSS屬性 只有寫原生的javascript了。

1.用JS修改標籤的 class 屬性值:

class 屬性是在標籤上引用樣式表的方法之一,它的值是一個樣式表的選擇符,如果改變了 class 屬性的值,標籤所引用的樣式表也就更換了,所以這屬於第一種修改方法。

更改一個標籤的 class 屬性的代碼是:

document.getElementById( id ).className = 字串;
document.getElementById( id ) 用於擷取標籤對應的 DOM 對象,你也可以用其它方法擷取。className 是 DOM 對象的一個屬性,它對應於標籤的 class 屬性。字串 是 class 屬性的新值,它應該是一個已定義的CSS選擇符。

利用這種辦法可以把標籤的CSS樣式表替換成另外一個,也可以讓一個沒有應用CSS樣式的標籤應用指定的樣式。

舉例:

複製代碼 代碼如下:<style type="text/css">
.txt {
font-size: 30px; font-weight: bold; color: red;
}
</style>
<div id="tt">歡迎光臨!</div>
<p><button onclick="setClass()">更改樣式</button></p>
<script type="text/javascript">
function setClass()
{
document.getElementById( "tt" ).className = "txt";
}
</script>

2.用JS修改標籤的 style 屬性值:

style 屬性也是在標籤上引用樣式表的方法之一,它的值是一個CSS樣式表。DOM 對象也有 style 屬性,不過這個屬性本身也是一個對象,Style 對象的屬性和 CSS 屬性是一一對應的,當改變了 Style 對象的屬性時,對應標籤的 CSS 屬性值也就改變了,所以這屬於第二種修改方法。

更改一個標籤的 CSS 屬性的代碼是:

document.getElementById( id ).style.屬性名稱 = 值;
document.getElementById( id ) 用於擷取標籤對應的 DOM 對象,你也可以用其它方法擷取。style 是 DOM 對象的一個屬性,它本身也是一個對象。屬性名稱 是 Style 對象的屬性名稱,它和某個CSS屬性是相對應的。

說明:這種方法修改的單一的一個CSS屬性,它不影響標籤上其它CSS屬性值。

舉例:

複製代碼 代碼如下:div id="t2">歡迎光臨!</div>
<p><button onclick="setSize()">大小</button>
<button onclick="setColor()">顏色</button>
<button onclick="setbgColor()">背景</button>
<button onclick="setBd()">邊框</button>
</p>
<script type="text/javascript">
function setSize()
{
document.getElementById( "t2" ).style.fontSize = "30px";
}
function setColor()
{
document.getElementById( "t2" ).style.color = "red";
}
function setbgColor()
{
document.getElementById( "t2" ).style.backgroundColor = "blue";
}
function setBd()
{
document.getElementById( "t2" ).style.border = "3px solid #FA8072";
}
</script> 方法:document.getElementById("xx").style.xxx中的所有屬性是什麼
盒子標籤和屬性對照
CSS文法(不區分大小寫) JavaScript文法(區分大小寫)
border border
border-bottom borderBottom
border-bottom-color borderBottomColor
border-bottom-style borderBottomStyle
border-bottom-width borderBottomWidth
border-color borderColor
border-left borderLeft
border-left-color borderLeftColor
border-left-style borderLeftStyle
border-left-width borderLeftWidth
border-right borderRight
border-right-color borderRightColor
border-right-style borderRightStyle
border-right-width borderRightWidth
border-style borderStyle
border-top borderTop
border-top-color borderTopColor
border-top-style borderTopStyle
border-top-width borderTopWidth
border-width borderWidth
clear clear
float floatStyle
margin margin
margin-bottom marginBottom
margin-left marginLeft
margin-right marginRight
margin-top marginTop
padding padding
padding-bottom paddingBottom
padding-left paddingLeft
padding-right paddingRight
padding-top paddingTop
顏色和背景標籤和屬性對照
CSS 文法(不區分大小寫) JavaScript 文法(區分大小寫)
background background
background-attachment backgroundAttachment
background-color backgroundColor
background-image backgroundImage
background-position backgroundPosition
background-repeat backgroundRepeat
color color
樣式標籤和屬性對照
CSS文法(不區分大小寫) JavaScript 文法(區分大小寫)
display display
list-style-type listStyleType
list-style-image listStyleImage
list-style-position listStylePosition
list-style listStyle
white-space whiteSpace
文字樣式標籤和屬性對照
CSS 文法(不區分大小寫) JavaScript 文法(區分大小寫)
font font
font-family fontFamily
font-size fontSize
font-style fontStyle
font-variant fontVariant
font-weight fontWeight
文字標籤和屬性對照
CSS 文法(不區分大小寫) JavaScript 文法(區分大小寫)
letter-spacing letterSpacing
line-break lineBreak
line-height lineHeight
text-align textAlign
text-decoration textDecoration
text-indent textIndent
text-justify textJustify
text-transform textTransform
vertical-align

verticalAlign

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.