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

如何将以document.write("hello")输入的hello设置颜色

如何将以document.write("hello")输入的hello设置颜色

提问者:慕移动8568877 2016-08-26 13:34

个回答

  • T_chan3404030
    2016-08-26 14:15:04
    已采纳

    document.write("<font color='red'>hello</font>");

  • 流L年
    2016-08-26 14:52:43

    document.write("<a style=‘color:blue’>hello</a>");

  • SNAKE丶丶
    2016-08-26 14:25:57

    也可以设置

    p{

        color:red;

    }


  • 尘封铭刻记忆3819366
    2016-08-26 14:18:57

    document.write("<font color='red>'"+"hello"+"</font>");

  • 慕粉3876636
    2016-08-26 14:08:27

    document.write("hello").style.color="red";