主题:  请问要 js里应用css的问题?

zaza

职务:普通成员
等级:2
金币:1.0
发贴:490
注册:2002/6/5 17:49:30
#12004/3/2 10:30:56
function Menu(id, x, y, width, overCol, backCol, borderCol)
{
    this.id = id;
    this.x = x;
    this.y = y;
    this.width = width;

    this.overCol = overCol;
    this.backCol = backCol;
    this.borderCol = borderCol;

    this.parentMenu = null;
    this.parentItem = null;
}
这段代码中this.overCol = overCol;
    this.backCol = backCol;
    this.borderCol = borderCol;
这几个值我想写到css里来控制,请问如何改写呢?



缺缺

职务:管理员
等级:8
金币:41.0
发贴:9620
注册:2004/1/14 19:14:47
#22004/3/2 14:11:37
this.className=
this.style...