这是我的HTML标记,包含多个属性:
<textarea id="text" name="comment" class="form-control" style="color:#959595" ... ></textarea>
如何通过纯JavaScript获取所有属性名称和属性值的列表
答案 0 :(得分:3)
应该就这么简单
var element = document.getElementById('text');
var attributes = element.attributes; // This now contains map of attributes of your DOM element
答案 1 :(得分:0)
有办法,但是您需要知道标签的ID
var tag = document.getElementById("text");
var atts = tag.attributes;