obj.style.setAttribute(); 在google,firefox下不支持style.setAttribute();請問有什麼好的解決方法嗎?
代碼:
function setCellStyle(name,value,isStyleAttribute){
try{
if (isStyleAttribute){
o._currentCell.style.setAttribute(name,value,0);
//cssText
var o_span = getSpan(o._currentCell);
if(o_span){
o_span.style.setAttribute(name,value,0);
}else{
//todo
}
}
}catch{
alert(e.message);
}
}
setAttribute一般用於dom對象,chrome,firefox沒有setAttribute方法
function setCellStyle(name, value, isStyleAttribute) {
try {
if (isStyleAttribute) {
o._currentCell.style[name] = value;///////////
//cssText
var o_span = getSpan(o._currentCell);
if (o_span) {
o_span.style[name] = value;///////
} else {
//todo
}
}
} catch (ex) {
alert(e.message);
}
}