这是我的函数集 css 属性,如 jquery
that.getNode = function() {
return element; // element is HTML node
};
that.css = function(obj) {
var node = that.getNode(),
attr;
if (node && node.style) {
for (attr in obj) {
if (obj.hasOwnProperty(attr) && node.style.hasOwnProperty(attr)) {
node.style[attr] = obj[attr];
}
}
}
return that;
};
然后我打电话,它在 Chrome 上正常运行,但在 IE9 或 firefox 上无法运行
that.css({
border: "1px solid black"
});