$()有2个参数,一个是选择器,一个是做用域。要和$("xxxx,xxx")区分。一般意义下的$('xxxx')实际上是默认了第二个做用域。完整说应该是$('xxxx',document)
$("#select1").dblclick(function(){ var $option=$("option:selected",this);//在select1中选择selected的option $option.appentTo($("#select2"));})