89495如图,我有这3个控件按钮,我需要的功能是:点击Monthly Review后,该按钮背景色变成其他颜色(自己定义的颜色),另外两个按钮背景色不变。以此类推,点击第二个按钮,第二个按钮的背景色变化,第一个和第三个背景色不变... 我查到了相关帮助文档,奈何自己js太弱不会用,文档js代码如下:
if(window.oldtd != null)
{
window.oldtd.removeAttr("style");
}
var td;
if($(e.target).is("button")){
td=$(e.target).parent().parent();
}else{
td=$(e.target).find("button").parent().parent();
}
td.css({"background-image":"url()","background-color":"rgb(170, 223, 248)"});
window.oldtd=td;
链接:http://help.finereport.com/doc-view-1055.htm
求大神解答,该修改上述js代码那些地方,可以实现我的需求?