为什么这样写 用getAttribute()得不到nodeName属性?var arr=document.getElementsByTagName("li"); document.write(arr[0].getAttribute(nodeName));

来源:9-7 节点属性

码头菌

2016-03-24 20:43

为什么这样写 用getAttribute()得不到nodeName属性?var arr=document.getElementsByTagName("li");     document.write(arr[0].getAttribute(nodeName));

写回答 关注

1回答

  • LeingK
    2016-03-25 10:29:43
    已采纳

    1,getAttribute()是用来获取属性值的,nodeName是标签名,不是属性,

    2、标签的属性常见的有id,name,type等,

    3、自定义属性也是可以的,比如<p abc="123"><p>里面的abc就是自定义的属性

    4、getAttribute("abc")可以得到属性值123,但是不能这样写getAttribute(abc),

    但是可以这样,abc="abc";getAttribute(abc);因为不加引号代表的是变量

    码头菌

    非常感谢!

    2016-03-26 13:52:53

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题