在Jquery中获取所选选项的文本值

这个问题在这里已经有了答案:

  • jQuery获得特定的选项标签文本20个答案

  • 那这个呢? 小提琴

    $('#myselect').change(function() {
            $('#secondSelect').html('');
            jQuery.each($("option:selected",this), function(i, val) {
                $('#secondSelect').append($(val).clone());
            });
    });
    
    链接地址: http://www.djcxy.com/p/83059.html

    上一篇: Get text value of selected option in Jquery

    下一篇: Get Text of Item in Listbox by Value using jQuery