问答详情
源自:1-5 JavaScript-认识语句和符号

document。write("")内可以写div样式吗?

如下面那样,如果需要怎么才能实现效果。

document.write("Hello"+"<div style="width:50px;height:50px;background-color:red;">world</div>");

提问者:矢伊 2016-11-09 19:49

个回答

  • qq_月下梭影_0
    2017-01-17 11:16:46

    为什么引用document.write("Hello"+"<div style="width:50px;height:50px;background-color:red;">world</div>");  实现不了?

  • 楸枫夜落
    2016-11-09 20:07:32

    document.write()中可以嵌入标签,在标签中写css样式,这样挺方便的.

  • 小伙各种毛长
    2016-11-09 20:05:46

    可以    要注意  引号之间的转义

  • 范郎
    2016-11-09 20:02:22

    可以啊,只是有些麻烦