请大家帮我看以,谢谢
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>无标题文档</title> </head> <body> <script type="text/javascript"> var main = document.body; //创建链接 function createa(url,text) { var btn = document.createElement("a"); btn.setAttribute("href",url); btn.setAttribute("value",text); //btn.setAttribute("color","red"); btn.style.color="red"; main.appendChild(btn); } // 调用函数创建链接 createa("http://www.imooc.com","慕课网"); </script> </body> </html>
这代码哪里错了呢?谢谢?
另外,用setAttribute怎么设置颜色属性啊?