select 双击事件

    jQuery(document).ready(function() {       
    jQuery("#uncountryTable").dblclick(function(){  
                    jQuery("#uncountryTable option:selected").each(function(){  
                        var option = "<option value='"+jQuery(this).val()+"'>"+jQuery(this).text()+"</option>";                   
                        jQuery("#countryTable").append(option);  
                        jQuery(this).remove();  
                    });  
                });   
    });  

摘自:http://www.iteye.com/topic/1042189


你可能感兴趣的:(select 双击事件)