将一个select选项传到另一个中去
2011-01-22 16:14:21
浏览:1702
java
select
function transferOption(sourceId,targetId){
var target = $("#"+targetId);
target.append($("option[@selected]", $("#"+sourceId)));
}
返回首页