Javascript 重写Asp.net ReportViewer工具栏分页事件

Javascript 重写Asp.net ReportViewer工具栏分页事件,javascript,jquery,asp.net,javascript-events,reportviewer,Javascript,Jquery,Asp.net,Javascript Events,Reportviewer,如何使用jquery或javascript覆盖Asp.net ReportViewer工具栏的分页单击事件。 . 下面的答案定义了一个样式类,它以ID为的控件为目标 <style> /* this will remove the spinner */ div#ReportViewer1_AsyncWait_Wait img{ display: none; } /* this allows you to modify the t

如何使用jquery或javascript覆盖Asp.net ReportViewer工具栏的分页单击事件。 .
下面的答案定义了一个样式类,它以ID为的控件为目标

    <style>
        /* this will remove the spinner */
        div#ReportViewer1_AsyncWait_Wait img{ display: none; } 
        /* this allows you to modify the td that contains the spinner */
        div#ReportViewer1_AsyncWait_Wait table tbody tr td:first-child{ background: red; width: 100px; height: 100px; } 
    </style>

/*这将移除微调器*/
div#ReportViewer1_AsyncWait_Wait img{display:none;}
/*这允许您修改包含微调器的td*/
div#ReportViewer1_AsyncWait_等待表tbody tr td:first child{背景:红色;宽度:100px;高度:100px;}

我仍在寻找其他解决方案,如果我找到了,我会添加它们