var main = document.body;
//创建链接
function createa(url,text)
{
var a = document.createElement("a");
a.setAttribute("href",url);
a.setAttribute("a.innerHTML","text");
a.setAttribute("a.style.color","red");
main.appendChild(a);
}
// 调用函数创建链接
createa("http://www.imooc.com","慕课网");
咕咕问
相关分类