我正在尝试创建一个表单,当选择选择元素'parcel'时它将显示div但是当它未被选中时我想隐藏div。这是我目前的标记:
到目前为止,这是我的HTML ..
<div class="row">
Type
<select name="type" id="type" style="margin-left:57px; width:153px;">
<option ame="l_letter" value="l_letter">Large Letter</option>
<option name="letter" value="letter">Letter</option>
<option name="parcel" value="parcel">Parcel</option>
</select>
</div>
<div class="row" id="row_dim">
Dimensions
<input type="text" name="length" style="margin-left:12px;" class="dimension" placeholder="Length">
<input type="text" name="width" class="dimension" placeholder="Width">
<input type="text" name="height" class="dimension" placeholder="Height">
</div>
到目前为止这是我的jQuery ..
$(function() {
$('#type').change(function(){
$('#row_dim').hide();
$("select[@name='parcel']:checked").val() == 'parcel').show();
});
});
答案 0 :(得分:35)
使用以下JQuery。 Demo
$(function() {
$('#row_dim').hide();
$('#type').change(function(){
if($('#type').val() == 'parcel') {
$('#row_dim').show();
} else {
$('#row_dim').hide();
}
});
});
答案 1 :(得分:3)
尝试:
if($("option[value='parcel']").is(":checked"))
$('#row_dim').show();
甚至:
$(function() {
$('#type').change(function(){
$('#row_dim')[ ($("option[value='parcel']").is(":checked"))? "show" : "hide" ]();
});
});
JSFiddle:http://jsfiddle.net/3w5kD/
答案 2 :(得分:1)
将您的jquery方法更改为
$(function () { /* DOM ready */
$("#type").change(function () {
alert('The option with value ' + $(this).val());
//hide the element you want to hide here with
//("id").attr("display","block"); // to show
//("id").attr("display","none"); // to hide
});
});
答案 3 :(得分:1)
<script>
$(document).ready(function(){
$('#colorselector').on('change', function() {
if ( this.value == 'red')
{
$("#divid").show();
}
else
{
$("#divid").hide();
}
});
});
</script>
为每个价值都这样做 同时根据您的参数更改值...
答案 4 :(得分:0)
尝试以下JS
$(function() {
$('#type').change(function(){
$('#row_dim').hide();
if ($(this).val() == 'parcel')
{
$('#row_dim').show();
}
});
});
答案 5 :(得分:0)
试试这个:
$(function() {
$("#type").change(function() {
if ($(this).val() === 'parcel') $("#row_dim").show();
else $("#row_dim").hide();
}
}
答案 6 :(得分:0)
试试这个:
$(function () {
$('#row_dim').hide(); // this line you can avoid by adding #row_dim{display:none;} in your CSS
$('#type').change(function () {
$('#row_dim').hide();
if (this.options[this.selectedIndex].value == 'parcel') {
$('#row_dim').show();
}
});
});
答案 7 :(得分:0)
没有什么新的东西,但缓存你的jQuery集合将有一个小的性能提升
$(function() {
var $typeSelector = $('#type');
var $toggleArea = $('#row_dim');
$typeSelector.change(function(){
if ($typeSelector.val() === 'parcel') {
$toggleArea.show();
}
else {
$toggleArea.hide();
}
});
});
在香草JS中超速:
(function() {
var typeSelector = document.getElementById('type');
var toggleArea = document.getElementById('row_dim');
typeSelector.onchange = function() {
toggleArea.style.display = typeSelector.value === 'parcel'
? 'block'
: 'none';
};
});
答案 8 :(得分:0)
我使用以下基于jQuery的代码段让select
- 元素显示div
- 元素的id
与value
匹配option
1}} - 隐藏不匹配的div
时的元素。不确定这是最好的方式,但这是一种方式。
$('#sectionChooser').change(function(){
var myID = $(this).val();
$('.panel').each(function(){
myID === $(this).attr('id') ? $(this).show() : $(this).hide();
});
});
.panel {display: none;}
#one {display: block;}
<select id="sectionChooser">
<option value="one" selected>Thing One</option>
<option value="two">Thing Two</option>
<option value="three">Thing Three</option>
</select>
<div class="panel" id="one">
<p>Thing One</p>
</div>
<div class="panel" id="two">
<p>Thing Two</p>
</div>
<div class="panel" id="three">
<p>Thing Three</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>