2017-08-16 57 views
1

我为预订航班编写了下面的代码,效果很好。如何用jquery更改选项的值

我唯一的问题是,我无法更改每个select的每个选项的值。

例如:我想要设置从012到各个option的值。但它只是重复了内部选项标签的值。

我该如何为选项设置特殊值,而不仅仅是将它们中的文本重复为值? 我该怎么做? 这里是我的代码片段:

$(function() { 
 

 
    // Function to create child dropdown 
 
    var createChildDropdown = function(i) { 
 
    
 
    // Create a div in the following format: 
 
    // <div class="childs"> 
 
    // <label for="...">Child (number)</label> 
 
    // <select id="..."></select> 
 
    // </div> 
 
    var $childDropdown = $('<div />', { 
 
     'class': 'childs' 
 
    }); 
 
    $childDropdown.append($('<label />', { 
 
     'for': 'childDropdown-' + i 
 
    }).text('Child ' + i)); 
 
    $childDropdown.append($('<select />', { 
 
     'id': 'childDropdown-' + i 
 
    })); 
 
    
 
    // Define options made available for each child 
 
    var options = ['a', 'b', 'c']; 
 
    options.forEach(function(option) { 
 
     // Create new option element and append to <select> 
 
     $childDropdown.find('select').append($('<option />').text(option).attr('value', option)); 
 
    }); 
 
    
 
    // Return documentFragment so that we can append it 
 
    return $childDropdown; 
 
    }; 
 
    
 
    // Function to destroy child dropdown 
 
    var destroyChildDropdown = function($el, i) { 
 
    $el.find('div.childs').get(i).remove(); 
 
    }; 
 

 
    $(".button-click a").on("click", function() { 
 
    var button = $(this); 
 
    var oldVal = parseInt(button.closest("ul").prev().val()); 
 
    var newVal = (button.text() == "+") ? oldVal + 1 : (oldVal > 0) ? oldVal - 1 : 0; 
 
    var total_value = ""; 
 

 
    button.closest("ul").prev().val(newVal); 
 

 
    $(".travel").each(function() { 
 
     var cat = $(this).prev('span').text(); 
 
     total_value += cat + ": " + $(this).val() + ", "; 
 
    }); 
 

 
    if (oldVal < newVal) { 
 
     $('.childDropdowns').append(createChildDropdown(newVal)); 
 
    } else if (oldVal > newVal) { 
 
     destroyChildDropdown($('.childDropdowns'), newVal); 
 
    } 
 

 
    total_value = total_value.substring(0, total_value.length - 2); 
 
    $(".main").val(total_value); 
 
    }) 
 
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> 
 
<label> 
 
Count all1 Traveller(s) 
 
<input type="text" name="no_travellers" class="main" value="Adults: 1" placeholder="" /> 
 
</label> 
 
<br/> 
 
<label> 
 
    <span>Children</span> 
 
    <input type="text" class="travel" id="CAT_Custom_410672" name="CAT_Custom_410672" value="0" /> 
 
    <ul class="button-group button-click"> 
 
     <li><a href="#" class="small button secondary"><i class="fa fa-plus"><span class="hide">+</span></i></a></li> 
 
     <li><a href="#" class="small button secondary"><i class="fa fa-minus"><span class="hide">-</span></i></a></li> 
 
    </ul> 
 
</label> 
 
<div class="childDropdowns"></div>

+1

不清楚你在问什么。什么是if(oldVal CBroe

+0

此代码为我带来选项的选择框。我想改变每个选项的价值。例如:。在这段代码中,每个选项的值都替换为其中的文本 – inaz

+0

_“这段代码为我提供了带选项的选择框”_ - 不,它没有。它只会抛出一个错误,因为在这一点上'oldVal'和'newVal'都不存在。 – CBroe

回答

1

的forEach通过循环指数回调函数作为第二个参数 - 因此,所有你需要做的是让你的回调采取是第二个参数,然后用它作为值:

$(function() { 
 

 
    // Function to create child dropdown 
 
    var createChildDropdown = function(i) { 
 
    
 
    // Create a div in the following format: 
 
    // <div class="childs"> 
 
    // <label for="...">Child (number)</label> 
 
    // <select id="..."></select> 
 
    // </div> 
 
    var $childDropdown = $('<div />', { 
 
     'class': 'childs' 
 
    }); 
 
    $childDropdown.append($('<label />', { 
 
     'for': 'childDropdown-' + i 
 
    }).text('Child ' + i)); 
 
    $childDropdown.append($('<select />', { 
 
     'id': 'childDropdown-' + i 
 
    })); 
 
    
 
    // Define options made available for each child 
 
    var options = ['a', 'b', 'c']; 
 
    options.forEach(function(option, index) { 
 
//-> added parameter name index here ^^^^^ 
 
     // Create new option element and append to <select> 
 
     $childDropdown.find('select').append($('<option />') 
 
      .text(option).attr('value', index)); 
 
//-> and using it here ...    ^^^^^ 
 
    }); 
 
    
 
    // Return documentFragment so that we can append it 
 
    return $childDropdown; 
 
    }; 
 
    
 
    // Function to destroy child dropdown 
 
    var destroyChildDropdown = function($el, i) { 
 
    $el.find('div.childs').get(i).remove(); 
 
    }; 
 

 
    $(".button-click a").on("click", function() { 
 
    var button = $(this); 
 
    var oldVal = parseInt(button.closest("ul").prev().val()); 
 
    var newVal = (button.text() == "+") ? oldVal + 1 : (oldVal > 0) ? oldVal - 1 : 0; 
 
    var total_value = ""; 
 

 
    button.closest("ul").prev().val(newVal); 
 

 
    $(".travel").each(function() { 
 
     var cat = $(this).prev('span').text(); 
 
     total_value += cat + ": " + $(this).val() + ", "; 
 
    }); 
 

 
    if (oldVal < newVal) { 
 
     $('.childDropdowns').append(createChildDropdown(newVal)); 
 
    } else if (oldVal > newVal) { 
 
     destroyChildDropdown($('.childDropdowns'), newVal); 
 
    } 
 

 
    total_value = total_value.substring(0, total_value.length - 2); 
 
    $(".main").val(total_value); 
 
    }) 
 
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> 
 
<label> 
 
Count all1 Traveller(s) 
 
<input type="text" name="no_travellers" class="main" value="Adults: 1" placeholder="" /> 
 
</label> 
 
<br/> 
 
<label> 
 
    <span>Children</span> 
 
    <input type="text" class="travel" id="CAT_Custom_410672" name="CAT_Custom_410672" value="0" /> 
 
    <ul class="button-group button-click"> 
 
     <li><a href="#" class="small button secondary"><i class="fa fa-plus"><span class="hide">+</span></i></a></li> 
 
     <li><a href="#" class="small button secondary"><i class="fa fa-minus"><span class="hide">-</span></i></a></li> 
 
    </ul> 
 
</label> 
 
<div class="childDropdowns"></div>

+0

非常感谢! – inaz

+0

你有什么建议添加ontill 4吗? – inaz

+0

不明白你的意思。 – CBroe