基于下拉菜单中的选择显示/隐藏窗体字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于下拉菜单中的选择显示/隐藏窗体字段相关的知识,希望对你有一定的参考价值。
Show a form field if 1 value from a dropdown is chosen, hide is the other is chosen. Can be extended to include more fields and values. Could get messy if you start nesting more than 2 'if else' but it gets the job done.
$(document).ready(function() { $('#form-btw').hide(); //hide field on start $('#Klant').change(function() { var $index = $('#Klant').index(this); if($('#Klant').val() != 'professional') { //if this value is NOT selected $('#form-btw').hide(); //this field is hidden } else { $('#form-btw').show();//else it is shown } }); }); --- <select name="Klant" id="Klant"> <option id="field-particulier" value="particulier">Particulier</option> <option id="field-professional" value="professional">Professional</option> </select> <input name="BTW" type="text" class="form-text" id="BTW" />
以上是关于基于下拉菜单中的选择显示/隐藏窗体字段的主要内容,如果未能解决你的问题,请参考以下文章
Suitescript 2.0-如何显示字段并基于下拉菜单更新值?
Django Admin显示/隐藏字段如果在下拉菜单中选择了特定值
Odoo[12.0] : 如何创建下拉菜单并在下拉菜单中显示所有菜单以及选择多个菜单