这两行js代码是什么意思?

document.write("hello"); document.getElementById("p1").style.color="blue";


宝慕林6992211
浏览 1548回答 3
3回答

刚毅87

document.write("hello") :在页面中写入 hello;document.getElementById("p1"):id 名为p1的元素;document.getElementById("p1").style.color="blue";:id 名为p1的元素的颜色为蓝色.
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript