通过Javascript将自定义属性添加到HTML元素

时间:2013-11-03 09:30:36

标签: javascript html

我正在尝试为Select html元素添加自定义元素。

 var sel=document.getElementById("sel1");
  sel.setAttribute("customprop","blabla");

在Chrome中它起作用,在IE8中它没有。

NO JQUERY

1 个答案:

答案 0 :(得分:2)

检查问题:Replace setAttribute with IE compatible script

您似乎需要在页面顶部添加doctype:

<!DOCTYPE html>

然后head元素中的以下标记使setAttribute工作:

<meta http-equiv="X-UA-Compatible" content="IE=edge" />