我需要检索页面上每个下拉列表的所有选定值,并使用这些值填充无序列表。每个项目都有一个新的li元素。
目前我有这个:
$(document).ready(function() {
$("select").each(function() {
var sel = "";
$(this).find(":selected").each(function() {
sel += $(this).text() + " ";
});
$(".size-result").text(sel);
});
});
如何使用它来创建新的li元素,然后插入文本?
我得到了它的工作,感谢有线:
$(document).ready(function() {
$("select").change(function() {
var sel = "";
$(".option-select option:selected").each(function () {
sel += $(this).text() + " ";
});
$(".result").empty().append(sel);
});
});
有没有办法可以否定每个下拉列表的第一个条目?由于它是“选择...”或“选择一个......”值,我想阻止它显示,因为它是选择中的第一个值。
答案 0 :(得分: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
});
});
});
答案 1 :(得分:0)
$("select option[selected]").each(function(i,e) {
$("ul#list").append("<li>"+$(e).val()+"</li>");});
答案 2 :(得分: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);
答案 3 :(得分:0)
$("select option[selected]").each( function() {
$('<li>', {
text: $(this).val()
}).appendTo('ul#list');
});