我在项目的多个地方使用 YUI popus。为此,我在常见的 css 中给出了正文背景颜色#fff。但是在一个弹出窗口中,我不想要这个弹出背景。我怎样才能从 javascript 中删除它。
notifier : new function(){
var n = new YAHOO.widget.Panel("indicator", {
width:"200px",
x:450,
y:70,
fixedCenter:true,
close:false,
draggable:false,
zindex:4,
modal:true,
visible:false
});
n.setBody("<img src='"+imagePath+"/loadingBig.gif'/>"+customerMsg.loading+"...");
n.render(document.body);
}
我想更改此弹出窗口的正文背景。