• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

javascript实现两个asp.net服务器控件ListBox值的互传

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

JavaScript新手对有些语法有些疑惑,请高手解惑:

描述:

  新建asp.net页面

  服务器控件ListBox两个

  Html控件 button两个

见代码

  

<body style=" text-align:center;">
    
<form id="form1" runat="server">
    
<div>    
         
<asp:ListBox ID="listLeft" runat="server" Height="199px" Width="160px" >
        
</asp:ListBox>
        
        
<input id="turnRight" type="button" onclick ='getLeftListSelected()' value=">>"  style=" top:100px; position: absolute;"/>
        
<input id="turnLeft"  type="button" onclick ='getRightListSelected()' value="<<" style=" top:140px; " />
        
        
<asp:ListBox ID="listRight" runat="server" Height="199px" Width="160px">
            
<asp:ListItem>试验1</asp:ListItem>
            
<asp:ListItem>试验2</asp:ListItem>
            
<asp:ListItem>试验3</asp:ListItem>
            
<asp:ListItem>试验4</asp:ListItem>
            
<asp:ListItem>试验5</asp:ListItem>
            
<asp:ListItem>试验6</asp:ListItem>
        
</asp:ListBox>
    
</div>
    
</form>
</body>

我的javaScript实现 代码

    <script  type="text/javascript" >

        
//      从右边列表往左移    
        function getRightListSelected()   
        {
            var lbRight 
= document.getElementById("listRight");
            var lbLeft  
= document.getElementById("listLeft");                               
            
for( var i = 0;i< lbRight.options.length;++i )
            {
                
if( lbRight.options[i].selected ){
                    lbLeft.appendChild( lbRight[i] );
                } 
            }    
        } 
        
        
//      从左列表往右移
        function getLeftListSelected()
        {
            var lbRight 
= document.getElementById("listRight");
            var lbLeft  
= document.getElementById("listLeft");                                
            
for( var i = 0;i< lbLeft.options.length;++i )
            {
                
if( lbLeft.options[i].selected ){
                    lbRight.appendChild( lbLeft[i] );   
                } 
            }
        }
 
</script>

我想合并后的js代码:

  <script  type="text/javascript" >     
   
//      从一个表移到另外一个表  Bug无法识别objfrom
        function Move( objfrom,objto )   
        {
            var lbRight 
= document.getElementById( objfrom );
            var lbLeft  
= document.getElementById( objto );                              
            
for( var i = 0;i< lbRight.options.length;++i )
            {
                
if( lbRight.options[i].selected ){
                    lbLeft.appendChild( lbRight[i] );
                } 
            }    
        } 
    
</script>

提示错误:

lbRight.options对象无法识别

望高手解惑。。。谢谢!!

 

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.NETdevelopmentserverfailedtostartlisteningonport(dynamicport)&amp;ErrorUnabl ...发布时间:2022-07-10
下一篇:
ASP.NET理论知识及面试题发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap