2

我需要检索页面上每个下拉列表的所有选定值,并使用这些值填充无序列表。当然,每个项目都有一个新的 li 元素。

目前我有这个:

$(document).ready(function() {
    $("select").each(function() {
        var sel = "";
        $(this).find(":selected").each(function() {
            sel += $(this).text() + " ";
        });
        $(".size-result").text(sel);
    });
});​

如何使用它来创建一个新的 li 元素然后插入文本?

感谢wirey,我得到了它:

$(document).ready(function() {
    $("select").change(function() {
        var sel = "";
    $(".option-select option:selected").each(function () {
       sel += $(this).text() + " ";
    });
    $(".result").empty().append(sel);
    }); 
});

有没有办法可以否定每个下拉列表的第一个条目?由于它是“选择...”或“选择一个...”值,我想阻止它显示,因为它是选择中的第一个值。

4

4 回答 4

2
$(document).ready(function() {
    var newLI = '';
    $("select option:selected").each(function() {           
           newLI += '<li>' + $(this).text() + "</li>";              
    });
    $('ulselector').append(newLI);
});​

编辑:

您可以在每个下拉列表中收听更改并在每次更改时重新更新列表

$(document).ready(function() {        
    $('select').change(function(){ // <-- bind change event handler to the drop downs
        var newLI = '';
        $("select option:selected").each(function() {   // <-- then iterate each time it changes   
              newLI += '<li>' + $(this).text() + "</li>";              
        });
        $('ulselector').empty().append(newLI); //<-- empty() to remove old list and update with new list
    });
});​

再次编辑:

您可以检查所选值的索引是否为 0 .. 如果是则不显示

$(document).ready(function() {
    $('select').change(function() { // <-- bind change event handler to the drop downs
        var newLI = '';

        $("select option:selected").each(function() { // <-- then iterate each time it changes   
            if ($(this).index() !== 0) { // <-- only if not default
                newLI += '<li>' + $(this).text() + "</li>";
            }    
            $('ul').empty().append(newLI); //<-- empty() to remove old list and update with new list
        });
    });
});

http://jsfiddle.net/wirey00/bKWpg/

于 2012-08-17T16:18:17.040 回答
0
$("select option[selected]").each(function(i,e) {
            $("ul#list").append("<li>"+$(e).val()+"</li>");})​;
于 2012-08-17T16:16:43.643 回答
0
var selectedArr = [];
var $ul = $('<ul />');
selectedArr = $("select option[selected=selected]").map(function() {
    return this.value
}).get();
$.each(selectedArr, function() {
   $ul.append('<li>' + this.slice(3));
});
$('body').append($ul);
于 2012-08-17T16:20:34.283 回答
0
$("select option[selected]").each( function() {
        $('<li>', {
             text: $(this).val()
        }).appendTo('ul#list');
});
于 2012-08-17T16:23:01.283 回答