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

setAttribute("color","red");和style.color="red"效果为什么不一样?

<!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 newnode=document.createElement("a");

   newnode.innerHTML=text;

   newnode.href=url;

   //newnode.style.color="red"

   newnode.setAttribute("color","red"); //不能实现文字红色效果

   main.appendChild(newnode)  

}

// 调用函数创建链接

createa("http://www.imooc.com/","慕课网");


</script> 

</body>

</html>


正在回答

1 回答

newnode.setAttribute('style', 'color:red');

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

举报

0/150
提交
取消

setAttribute("color","red");和style.color="red"效果为什么不一样?

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