gpt4 book ai didi

Javascript:根据特定下拉列表的值隐藏表单输入

转载 作者:行者123 更新时间:2023-11-30 18:39:13 25 4
gpt4 key购买 nike

基本上,我想根据下拉菜单的选定值隐藏输入选项。具体来说,如果选择的值是 tid 和 acc,我只显示这个输入标签。

我有这个下拉菜单。

<select id="select1742855Rule Type" onchange="document.getElementById('form1742855_Rule Type').value=this.value;">
<option value="" selected="selected">None</option>
<option value="tid">tid</option>
<option value="tid and acc">tid and acc</option>
<option value="xid">xid</option>
</select>

还有这个输入标签:

<input type="text" size="6" id = "acc" onchange="document.getElementById('form1742851_Id').value=this.value;">

在 JavaScript 方面,我完全是个新手。任何帮助将不胜感激!

最佳答案

首先:不要在控件 id 中使用空格

$('#select1742855Rule_Type').change(function() {
var val = $(this).val();
if (val == 'tid and acc') {
$('#acc').show();
}
else {
$('#acc').hide();
}
});

关于Javascript:根据特定下拉列表的值隐藏表单输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7353403/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com