为了账号安全,请及时绑定邮箱和手机立即绑定

请大家帮我看以,谢谢

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

正在回答

2 回答

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

1 回复 有任何疑惑可以回复我~
#1

marshall_stan 提问者

谢谢啦!
2015-08-05 回复 有任何疑惑可以回复我~

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

2 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请大家帮我看以,谢谢

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信