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

来源:9-16 创建元素节点createElement

Dberglas

2016-07-16 06:14

<!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回答

  • 黄泉大官人3589618
    2016-07-16 13:29:56

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

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题