1 var sub = document.getElementById("sub"); 2 sub.setAttribute("disabled", "disabled"); // 兼容的 3 sub.setAttribute("style", "position:absolute;left:100px;top:100px;"); // IE 7 不能设置成功 4 5 // 以下为兼容方法: 6 var cssText = "position:absolute;left:100px;top:100px;"; 7 sub.style.cssText = cssText; // IE 7 8 sub.setAttribute("style", cssText); // 非 IE7