setTimeout(function(){
//隐藏报表块reportContent的滚动条;
$("div[widgetname=REPORTCONTENT]").style.overflow="hidden";
},100);
— 或者
setTimeout(function(){
$(".reportContent").css("overflow","hidden");
},100);
——————————————————
用一个延时函数处理;
-- 大概这个思路,不确定具体需求,灵活扩展吧!