Seven blog

天行健,君子以自强不息

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

Select Option操作

function Up(question_id){
    
var vintSelCount = 0;
    
var vobjCboLeft = question_id;
   
    
for (var i = 0; i < vobjCboLeft.length; i++)
        
if (vobjCboLeft(i).selected)
            vintSelCount
++;
    
if (vintSelCount != 0)
    
{
         
        
if (vobjCboLeft.selectedIndex != 0)
        
{
            
var vintSelIndex = vobjCboLeft.selectedIndex;
            vobjCboLeft.options.add(
new Option(vobjCboLeft(vintSelIndex).text, vobjCboLeft(vintSelIndex).value), vintSelIndex - 1);
            vobjCboLeft.options[vintSelIndex 
+ 1= null;
            vobjCboLeft(vintSelIndex 
- 1).selected = true;
        }

    }

}

//??:??
function Down(question_id){
    
var vintSelCount = 0;
    
var vobjCboLeft = question_id;
   
    
for (var i = 0; i < vobjCboLeft.length; i++)
        
if (vobjCboLeft(i).selected)
            vintSelCount
++;
    
if (vintSelCount != 0)
    
{
         
        
if (vobjCboLeft.selectedIndex != vobjCboLeft.length - 1)
        
{
            
var vintSelIndex = vobjCboLeft.selectedIndex;
            vobjCboLeft.options.add(
new Option(vobjCboLeft(vintSelIndex).text, vobjCboLeft(vintSelIndex).value), vintSelIndex + 2);
            vobjCboLeft.options[vintSelIndex] 
= null;
            vobjCboLeft(vintSelIndex 
+ 1).selected = true;
        }

    }

}

posted on 2007-08-30 14:43  china-seven  阅读(190)  评论(0)    收藏  举报