<script language="JavaScript">
function show_board(board_top,board){
var select_index,select_id,select_name,i,j;
select_index=board_top.selectedIndex;
select_id=board_top.options[select_index].value;
form1.parent_id.value=select_id;
form1.board_top_add.value=board_top_arr[select_id].name;
form1.note_top_add.value=board_top_arr[select_id].note;
form1.manager_top_add.value=board_top_arr[select_id].manager;
for(i=board.length-1;i>=0;i--){
board.remove(i);
}
for(i=0;i<board_arr[select_id].length;i++){
if(typeof(board_arr[select_id][i])=="object"){
var oOption = document.createElement("OPTION");
oOption.text=board_arr[select_id][i].name;
oOption.value=board_arr[select_id][i].id;
//document.all.MyList.add(oOption);
board.add(oOption);
}
}
&nbs
| 对此文章发表了评论 |
