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

用setAttribute来设置文字颜色不用 a.style.color,如何写,

function createa(url,text)

{

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

    a.setAttribute("href",url);

    a.innerHTML=text;

    a.style.color="red";

    main.appendChild(a);

}


提问者:木槿111 2017-06-06 16:09

个回答

  • qq_放浪形骸_2
    2017-06-06 16:21:12
    已采纳

    function createa(url,text)

    {

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

        a.setAttribute("href",url);

        a.innerHTML=text;

        /*a.style.color="red";*/

        a.setAttribute("style","color:red");

        main.appendChild(a);

    }

    // 调用函数创建链接

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