问题描述
$(document).ready(function(){
SetDXRResetStyleBackground();
});
函数SetDXRResetStyleBackground(){
$(.DXRResetStyle tr").click(function(){
$(.DXRResetStyle tr").css("background-color","#ffffff");
$(this).css("background-color","#aaaaaa");
});
}
我尝试过的事情:
最初,Java脚本正在运行,并且行以颜色为焦点,但是在分页报告之后却不起作用.
$(document).ready(function () {
SetDXRResetStyleBackground();
});
function SetDXRResetStyleBackground() {
$(".DXRResetStyle tr").click(function () {
$(".DXRResetStyle tr").css("background-color", "#ffffff");
$(this).css("background-color", "#aaaaaa");
});
}
What I have tried:
Initaally the java script is working and the row is focused with color but after pagination of report is is not working.
推荐答案
这篇关于报告分页后Java脚本不起作用.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!