咱們常常須要在JavaScript中給Element動態添加各類屬性,能夠使用setAttribute()來實現,但涉及到了瀏覽器的兼容性問題。
setAttribute(string name,string value):增長一個指定名稱和值的新屬性,或者把一個現有的屬性設定爲指定的值。
一、關於class和className
class屬性在W3C DOM中扮演着很重要的角色,但因爲瀏覽器差別性仍然存在。使用setAttribute("class", vName)語句動態設置Element的class屬性在firefox中是行的通的,在IE中卻不行。由於使用IE內核的瀏覽器不認識"class",要改用"className";
一樣,firefox 也不認識"className"。因此經常使用的方法是兩者兼備:css
element.setAttribute("class", vName); element.setAttribute("className", vName); //for IE
二、onclick
bar.setAttribute("onclick", "");這裏利用setAttribute指定onclick屬性,簡單很好理解。可是IE不支持。
爲達到兼容各類瀏覽器的效果,能夠用點符號來設置Element的對象屬性、集合屬性和事件屬性。瀏覽器
document.getElementById("foo").className = "fruit"; document.getElementById("foo").style.cssText = "color: #00f;"; document.getElementById("foo").style.color = "#00f"; document.getElementById("foo").onclick= function () { alert("This is a test!"); }