问答详情
源自:9-16 创建元素节点createElement

好了,哈哈哈

function createa(url,text)

{

    var a=document.createElement("a");

    a.href = url;

    a.innerHTML=text;

    a.setAttribute("style", "text-decoration:none;");

    a.style.color="red";

    body.appendChild(a);

    

}

// 调用函数创建链接

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



提问者:慕仰5364098 2019-04-26 21:24

个回答

  • 莫寻墨迹
    2019-07-17 15:51:40

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


  • 慕圣4123437
    2019-05-30 08:55:09

    调试都没调试 就发出来了?