问答详情
源自:9-16 创建元素节点createElement

请大家帮我看以,谢谢

<!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怎么设置颜色属性啊?

提问者:marshall_stan 2015-08-04 13:18

个回答

  • 伊兮尘昔
    2015-08-05 14:27:52
    已采纳

    关键是没在页面上显示你写的这个链接, btn.setAttribute("value",text);这块不能这么写,应该用innerHTML来做。你是要设置背景色?还是设置字体颜色?

  • 伊兮尘昔
    2015-08-05 14:30:44

    颜色设置的话要写 btn.setAttribute("style","color:red");