JS設定css樣式的幾種方式

看風景就發表於2017-12-20
/* 1.直接設定style屬性 */
element.style.height = '100px';
 
/* 2.直接設定屬性 */
element.setAttribute('height', '100px');
 
/* 3.使用setAttribute設定style屬性 */
element.setAttribute('style', 'height: 100px !important');
 
/* 4.使用setProperty設定屬性,通過第三個引數設定important */
element.style.setProperty('height', '300px', 'important');
 
/* 5.設定cssText */
element.style.cssText += 'height: 100px !important';

相關文章