我如何通过循环从HTML evlemnt获取所有属性的列表值
现在从我的代码中我有三个attr我想通过循环获取一个列表中所有三个attr的值,我该怎么做?例:

 f1="hi"
 f2=" how"
 f3=" are"
 f4="you"


在按钮元素中,我想将所有元素放在一起

最佳答案

var elem = document.getElementById("target");

for (var i = 0; i < elem.attributes.length; i++) {
  var attrib = elem.attributes[i];
  alert(attrib.name + " = " + attrib.value);
}

08-19 15:31