问答详情
源自:1-1 为什么学习JavaScript

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

document.write("hello");

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

 document.write ("hello")什么意思, 

  document.getElementById 什么意思呀  不懂 这怎么记?求解!


提问者:慕慕0677951 2017-04-03 17:04

个回答

  • 慕粉0058016267
    2017-04-03 17:22:11
    已采纳

    document.write("hello");//输出hello//

     document.getElementById("p1").style.color="blue";//将id为p1的元素的文本颜色设置为蓝色//

    document.getElementById();是DOM中元素获取方法中的一种,通过元素的id名来获取元素

  • solomon4125878
    2017-04-03 17:20:27

    document.write("");

    是指输出双引号内的字符串

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

    选取背景为p1的样式是指规定颜色为蓝色

  • ffow
    2017-04-03 17:20:20

    document.write("hello"); //输出hello

    document.getElementById("p1") ,是指获取document对象

    document.getElementById("p1").style.color="blue"; ,是指将所获取的document对象的样式颜色改为蓝色

  • JohnChow
    2017-04-03 17:17:16

     document.write ("hello")是指在网页上打印出"hello"这个词;

     document.getElementById("p1").style.color="blue" 是指操作id为"p1"的样式,这里把id为"p1"的颜色样式修改成了蓝色

  • 颍ying
    2017-04-03 17:15:00

    JavaScript中输出hello