在Jquery中获取所选选项的文本值
这个问题在这里已经有了答案:
那这个呢? 小提琴
$('#myselect').change(function() {
$('#secondSelect').html('');
jQuery.each($("option:selected",this), function(i, val) {
$('#secondSelect').append($(val).clone());
});
});
链接地址: http://www.djcxy.com/p/83059.html