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

var key=it.getKey();
   
   
   
   var len = $('#'+key).find('.itemlist').find('input');
   var a=new Array();
   var chked=false;
   for(var i=0;i<len.length;i++){
    chked=chked||len[i].checked;
    if(chked);
    if(chked===true){
     if(len[i].checked){
      
      var val =$('#'+key).find('.itemlist').find('.selectIndex').eq(i).text();
     
      a.push(val); 
     
     
      // val+=val+',';
        
       /*  val+=split(',');
     alert(val)*/
     
      $('#'+key).find('.editor_answer').css({
            'font-weight':'bold',
            'color':'blue',
            'font-size':'14px'
            });
     
     
     
    
         }
    }
   }
   
   if(chked===true){
     var a=$.trim(a.toString());
   
    $('#'+key).find('.editor_answer').text(a);
    //alert($('#'+key).find('.editor_answer').text())
   }
   
    
   if(chked===false){
    $('#'+key).find('.editor_answer').text('');
   }