

| 列頭 | 列頭 | 列頭 | 列頭 |
| sdfsdfsdfsdfsd | sdfsdfds | sdfsd | sdfsdfsd |
| 22222 | 33333 | 232323 | 23232 |
var Td_BackGround_Color_Array = Array();
var Td_Font_Color_Array = Array();
//選中後RD的顏色和字體的顏色
var Change_BackGround_color ="#4684c1";
var Change_Font_color ="#ffffff";
//下面兩色為原始的背景色和原始字的顏色
var Old_BackGround_Color = "#ffffff";
var Old_Font_color = "#000000";
//--------------------------------------
//設置行的換色
var Tr_Change_BackGround="#72a3cf";
var Tr_Change_Fontcolor="#ffffff";
var Cell_Selected_Array = Array();
function Init_Table_Tr_Td(Table_id){
var Table_Object = document.all.item(Table_id);
var Table_Tr_Length = parseInt(Table_Object.rows.length);
var Table_Td_Length = parseInt(Table_Object.rows[1].cells.length);
//初始化記錄表格中的每一個RD的背景色和字體顏色 for(var y=0;y Td_BackGround_Color_Array[i][y] = Table_Object.rows[i].cells[y].style.background; //設置列的顏色 for(var i=1;i var flag_td =","+Cell_Selected_Array+","; } Init_Table_Tr_Td("Permit_View_Talbe");
for(var i=0;i
Td_Font_Color_Array[i] = Array();
if(!Table_Object.rows[i].cells[y].style.background){
if(Table_Object.rows[i].style.background){
Table_Object.rows[i].cells[y].style.background=Table_Object.rows[i].style.background;
}else{
if(Table_Object.rows[i].bgColor){
Table_Object.rows[i].cells[y].style.background=Table_Object.rows[i].bgColor;
}else{
if(Table_Object.rows[i].cells[y].bgColor)
Table_Object.rows[i].cells[y].style.background=Table_Object.rows[i].cells[y].bgColor;
else
Table_Object.rows[i].cells[y].style.background=Old_BackGround_Color;//否則為設置的底色
}
}
}
//如果初始情況下沒有進行設置style.color的話,則默認為上面設置的原始色
if(!Table_Object.rows[i].cells[y].style.color){
if(!Table_Object.rows[i].style.color){
Table_Object.rows[i].cells[y].style.color =Old_Font_color;
}else{
Table_Object.rows[i].cells[y].style.color =Table_Object.rows[i].style.color;
}
}
Td_Font_Color_Array[i][y] = Table_Object.rows[i].cells[y].style.color;
}// END FOR Y
}// END FOR I
}
function Change_TdBgColor(me,Table_Object){
var tdobject = me;
while(tdobject.tagName!="TD"){tdobject = tdobject.parentElement;}
var tdindex = tdobject.cellIndex;
var Table_Tr_Length = parseInt(Table_Object.rows.length);
var Table_Td_Length = parseInt(Table_Object.rows[0].cells.length);
Table_Object.rows[i].cells[tdindex].style.background=Change_BackGround_color;
Table_Object.rows[i].cells[tdindex].style.color=Change_Font_color;
Cell_Selected_Array.push(tdindex);
}else{
Table_Object.rows[i].cells[tdindex].style.background=Td_BackGround_Color_Array[i][tdindex];
Table_Object.rows[i].cells[tdindex].style.color=Td_Font_Color_Array[i][tdindex];
for(var c=0;c
}
}
}
}
//設置行的顏色
function Chang_Tr_over(me,Table_object,flag){
var trobject = me;
while(trobject.tagName!="TR"){trobject = trobject.parentElement;}
var trindex = trobject.rowIndex;
var Table_Tr_Length = parseInt(Table_object.rows.length);
var Table_Td_Length = parseInt(Table_object.rows[trindex].cells.length);
for(var i=0;i
if(flag_td.indexOf(value)!=-1) continue;
if(flag==1){
Table_object.rows[trindex].cells[i].style.background=Tr_Change_BackGround;
Table_object.rows[trindex].cells[i].style.color=Tr_Change_Fontcolor;
}else{
Table_object.rows[trindex].cells[i].style.background=Td_BackGround_Color_Array[trindex][i];
Table_object.rows[trindex].cells[i].style.color=Td_Font_Color_Array[trindex][i];
}
}
script>