我正在尝试为Select html元素添加自定义元素。
var sel=document.getElementById("sel1");
sel.setAttribute("customprop","blabla");
在Chrome中它起作用,在IE8中它没有。
NO JQUERY
答案 0 :(得分:2)
检查问题:Replace setAttribute with IE compatible script
您似乎需要在页面顶部添加doctype:
<!DOCTYPE html>
然后head元素中的以下标记使setAttribute工作:
<meta http-equiv="X-UA-Compatible" content="IE=edge" />