javaScript控制DIV样式

Original 2019-04-04 16:50:47 222
abstract:<p id="p1">Hello World!你好世界</p><p id="p2">Hello World!你好世界</p><script>document.getElementById("p2").style.color="blue";document.ge

<p id="p1">Hello World!你好世界</p>

<p id="p2">Hello World!你好世界</p>


<script>

document.getElementById("p2").style.color="blue";

document.getElementById("p2").style.fontFamily="楷体";

document.getElementById("p2").style.fontSize="140px";

</script>


Correcting teacher:天蓬老师Correction time:2019-04-08 10:25:49
Teacher's summary:document.getElementById("p2").style.fontFamily="楷体"; 字体不要写中文,应该写英文

Release Notes

Popular Entries