setProperty
函數(shù)是用于設(shè)置CSS樣式屬性的函數(shù)。它可以用于設(shè)置元素的樣式屬性,包括顏色、大小、位置等等。以下是setProperty
函數(shù)的常見(jiàn)用法:
element.style.setProperty('background-color', 'red');
element.style.setProperty('color', 'blue');
element.style.setProperty('font-size', '12px');
element.style.setProperty('border', '1px solid black');
element.style.setProperty('position', 'absolute');
element.style.setProperty('top', '100px');
element.style.setProperty('left', '50px');
注意:setProperty
函數(shù)的第一個(gè)參數(shù)是要設(shè)置的屬性名稱,第二個(gè)參數(shù)是屬性的值。