有大佬知道怎么写js吗,查过文档,我是要改变背景,字体,在frm在对报表块整体变
报表块名是report开头的都有这个效果
setTimeout(function(){
$("div[widgetName^=REPORT]").hover(function(){
$(this).css("background-color","blue");
},
function(){
$(this).css("background-color","white");
}
)
},100)
这个效果不是 三句脚本能写出来。
就算写出来你也看不懂。