112_js筆記14_css的dom操作
阿新 • • 發佈:2018-11-30
一,靜態直接修改標籤的css樣式
document.getElementById(id).style.property=新樣式
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鳥教程(runoob.com)</title> </head> <body> <p id="p1">Hello World!</p> <p id="p2">Hello World!</p> <script> document.getElementById("p2").style.color="blue"; document.getElementById("p2").style.fontFamily="Arial"; document.getElementById("p2").style.fontSize="larger"; </script> <p>以上段落通過指令碼修改。</p> </body> </html>
瀏覽器執行結果:
二,動態觸發修改標籤的css樣式
- 1, 直接寫在標籤事件裡邊
<button type="button" onclick="document.getElementById('id1').style.color='red'">
點我!</button>
- 2,寫在js檔案裡邊
var btn1=document.getElementById('button');
btn1.onclick=function(){
btn1.style.color='red';
}