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

为什么加上a.style.text-decoration = "none";去不掉下划线,把none的引号去掉也没用

function create(url,text)
{
    var body = document.body;
    var a = document.createElement("a");
    a.setAttribute("href",url);
    a.innerHTML = text;
    a.style.color = "red";
    a.style.text-decoration = "none";
    body.appendChild(a);
}

为什么加上a.style.text-decoration = "none";去不掉下划线,把none的引号去掉也没用

提问者:可乐要加冰Xx 2017-09-08 20:08

个回答

  • qq_灰色头像_17
    2017-09-23 11:27:05

    a.style="text-decoration:none";

  • 慕粉欧拉
    2017-09-22 12:06:59

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

  • qq_ZSS_0
    2017-09-08 20:31:09

    用font_decoration