关于className的问题

来源:9-17 创建文本节点createTextNode

慕粉1818511579

2016-12-15 16:23

求助~,下面这个程序,为什么输出的时候,background和width,height并没有改变??

<style type="text/css">

.message{   
 width:200px;
 height:100px;
 background-color:#CCC;}
 
</style>
</head>
<body>
<script type="text/javascript">
document.write("输入要创建的文本<br/>");
  var main1=document.getElementsByTagName("body");
  main1.appendChild(creat());
  function creat(){
    //   var hh=prompt("shuru");
      var innValue=document.getElementById("inn").value;
      var p=document.createElement("p");
      p.innerHTML=innValue;
      p.className="message";
      p.style.color="red";
      document.write(p.innerHTML);
  }

</script>
<input id="in" type="button" onclick="creat()" value="点击创建文本"/>
<input id="inn" type="text" />
</body>

写回答 关注

2回答

  • DarkAleX
    2016-12-16 11:42:34
    已采纳

    你需要将创建的节点添加到当前的body下面,要不然在内存里面,当然没有显示效果啦。document.body.appendChild(p);

    慕粉1818...

    谢谢~~~

    2016-12-21 16:13:53

    共 4 条回复 >

  • 好我再想想
    2016-12-16 11:23:12

    <style type="text/css">

    .message{    

     width:200px;

     height:100px;

     background-color:#CCC;}

     

    </style>

    </head>

    <body>

    <script type="text/javascript">

    document.write("输入要创建的文本<br/>");

     var main=document.body;

     function creat(){

      var innVaule=document.getElementById("inn").value;

      var newp=document.createElement("p");

      newp.innerHTML=innVaule;

      newp.className="message";

      newp.style.color="#c00";

      main.appendChild(newp);

     }

    </script> 

    <input id="in" type="button" onclick="creat()" value="点击创建文本"/>

    <input id="inn" type="text" />

    </body>


JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题