现在的位置: 首页 > 综合 > 正文

select 双击事件

2013年01月01日 ⁄ 综合 ⁄ 共 327字 ⁄ 字号 评论关闭
    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

抱歉!评论已关闭.