gpt4 book ai didi

javascript - jQuery Form to Wizard,隐藏某个步骤

转载 作者:行者123 更新时间:2023-12-02 16:16:37 24 4
gpt4 key购买 nike

enter image description here我有这个表单,我想在触发 onchange 事件时隐藏其中一个字段集。我在第一个字段集中有一个选择标签。当我从下拉列表中选择字段集 2 时,必须删除第二个字段集。

<form id="form1">
<fieldset class="sectionwrap">
<select id="hide">
<option value="1">fieldset 2</option>
<option value="2">fieldset 3</option>
</select>
</fieldset>

<fieldset id ="second" class="sectionwrap">content</fieldset>

<fieldset id="third" class="sectionwrap">content</fieldset>
</form>

我有这个 Jquery 脚本。但表单向导顶部的步骤编号并未删除,仅删除了内容。

<script type="text/javascript">
$('#hide').on('change', function() {
var hid = $('#hide').val();
if (hid == "1") {
$('#form1').css("display", "none");
}
});
</script>

提前致谢。

最佳答案

使用 hide() 函数

  $('#hide').on('change', function() {
var hid = $('#hide').val();
if (hid == "1") {
$('#second').hide();//Change id of this statement.
$('#hide option[value="'+hid+'"]').hide();
}
});

jsfiddle:https://jsfiddle.net/z8mwe5dz/2/

关于javascript - jQuery Form to Wizard,隐藏某个步骤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29511305/

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