为什么运行了只显示红色的“慕课网”3个字,其他没什么效果,网址啥的都没
为什么运行了只显示红色的“慕课网”3个字,其他没什么效果,网址啥的都没
var body = document.body; //创建链接 function create(url,text) {var a=document.createElement("a"); a.href=url; a.innerHTML=text; a.style.color="red"; body.appendChild(a); } // 调用函数创建链接 create("http://www.imooc.com/","慕课网");