问答详情
源自:9-17 创建文本节点createTextNode

看了好多遍代码,但还是没有结果出来?想知道哪里出错了?


<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>无标题文档</title>

<style type="text/css">


.message{  

    display:block;

width:200px;

height:100px;

background-color:#CCC;}

</style>

</head>

<body>

<script type="text/javascript">

 main=document.body;

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

 p.className="message";

 var textnode=document.createTextNode("I love JavaScript!");

 newnode.appendChild(textnode);

 main.appendChild(newnode);



提问者:舒晴仔 2018-04-07 11:47

个回答

  • 阿宅娘
    2018-04-08 10:23:53

    p.className="message";    改成:newnode.className="message";