任务出错!
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>无标题文档</title> <style type="text/css"> .message{ width:200px; height:100px; background-color:#CCC;} </style> </head> <body> <script type="text/javascript"> var newText=document.createTextNode("i love javascript!---"); newText.className='message'; document.body.appendChild(newText); </script> </body> </html>
这段代码为什么没有效果?