码头菌
2016-03-24 20:43
为什么这样写 用getAttribute()得不到nodeName属性?var arr=document.getElementsByTagName("li"); document.write(arr[0].getAttribute(nodeName));
1,getAttribute()是用来获取属性值的,nodeName是标签名,不是属性,
2、标签的属性常见的有id,name,type等,
3、自定义属性也是可以的,比如<p abc="123"><p>里面的abc就是自定义的属性
4、getAttribute("abc")可以得到属性值123,但是不能这样写getAttribute(abc),
但是可以这样,abc="abc";getAttribute(abc);因为不加引号代表的是变量
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题