程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 表框操作函數集合

表框操作函數集合

編輯:.NET實例教程

function selAdd( srcList, dstList )
{
    var selectedIndex = new Array();
    var count = 0;

    for ( i=0; i<srcList.options.length; i++ ){

        if ( srcList.options[i].selected ){
            
            selectedIndex[count] = i;
            count ++;

        }
    }                    

    for ( j=0; j<selectedIndex.length; j++ ){
        
        k = selectedIndex[j];

  if ( chkDup( srcList.options[k].value, dstList )==false ){
            dstList.options.length++;
            var len = dstList.options.length-1;
            dstList.options[len].value = srcList.options[k].value;
            dstList.options[len].text = srcList.options[k].text;
        }

    }

}

//描述: 刪除列表框元素
function selDel( list )
{
    var len = list.options.length;
    var idx = 0;

    while ( idx< len ){

        if ( list.options[idx].selected ){
           ; list.options.remove(idx);
            len = list.options.length;
        }
        else{
            idx ++;
        }
    }
}

//描述: 檢測列表框元素重復
function chkDup( item, list )
{
    for ( i=0; i<list.options.length; i++ ){
        //alert( item + " - " + list.options[i].value );
        if ( item == list.options[i].value ){
            return true;
        }
    }                    
    return false;


//描述: 選擇列表框的全部成員
function selSel( list, item )
{
    item.value = " ";
    for ( i=0; i<list.options.length; i++ ){
        list.options[i].selected=true;
        item.value += list.options[i].value + " ";
    }

}

function selSelSingle( list, value )
{
    for ( i=0; i<list.options.length; i++ ){
        if ( list.options[i].value == value ){
            list.options[i].selected=true;
            break;
        }
    }

}
//描述: 根據數組初始化列表框
function selList( item, arr )
{

    var curIndex, insIndex, val, text;
    var arrItem = new Array();

    if ( item ){

        item.length = 0;
        curIndex = 0;

        for ( i=0; i<arr.length; i++ ){

            item.length ++;
            insIndex = item.length - 1;
            
  if ( arr[i] ){
                arrItem = arr[i].split( ", " );
                text = arrItem[1];
                val  = arrItem[0];
                item.options[ insIndex ].text = text;    
                item.options[ insIndex ].value= val;
            }
        }

    }
}
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved