document.write("hello"); document.getElementById("p1").style.color="blue";
3 回答
Perona
TA贡献355条经验 获得超403个赞
看注释
document.write("hello"); //向网页文档输出hello document.getElementById("p1").style.color="blue"; //获取页面中id名为p1的元素并把它的颜色样式赋为blue
添加回答
举报
0/150
提交
取消