gpt4 book ai didi

javascript - 如何根据输入有条件地隐藏输入表单的某些部分?

转载 作者:行者123 更新时间:2023-12-03 04:16:34 25 4
gpt4 key购买 nike

在我当前的项目中,我有一个提交表单,我想根据表单中的其他输入隐藏其中的一部分。我只想有条件地展示其中一些。如果用户选择警告类型是通知,我们应该显示表单的输入附件和电子邮件部分。我该怎么做?

    // Deviation type
var selWarningType = $("<select />").css({ width: "96%" });
selWarningType.append(
$("<option />").val("1").text(res.Warning),
$("<option />").val("2").text(res.Notification)
);
var textWarningType = $("<b>" + res.WarningOrNotification + ":</b>").css({ display: "block", "margin-top": "10px" });
formContent.append(textWarningType, selWarningType);

// Input attachment
var inputFile: JQuery = $("<input id='attachment-input'type='file' />");
var attach = $("<b class='attachmentBlock'>"+ res.Attachments +":</b></div>").css({ display: "block", "margin-top": "10px" });
formContent.append(attach, inputFile);

// Email list
var emailAddress = $("<input />").val("").css({ width: "96%" });
var textEmail = $("<b>" + res.Email + ":</b>").css({ display: "block", "margin-top": "10px" });

var emailSubLabel = $("<span>" + res.EmailHelpLabel + "</span>");
formContent.append(textEmail, emailSubLabel, emailAddress);

我当前的想法是在选择字段的更改事件上放置一个事件监听器,并检查当前值是什么,如果不是所需值,则隐藏电子邮件字段。

    $("#warningTypeSelect").on("change", () => {
if ($("#warningTypeSelect").val() === "2") {
$("#emailDiv").show();
}
else {
$("#emailDiv").hide();
}
})

但是这个选项让我在电子邮件元素上放置内联样式。有没有一种更简洁的方法可以在表单中执行此操作,因为现在我必须将事件处理程序混合到我的元素创建代码中?

最佳答案

$("#warningTypeSelect").on("change", () => {
if ($("#warningTypeSelect").val() === "2") {
$("#emailDiv").css("display","block");
}
else {
$("#emailDiv").css("display","none");
}
})

试试这个

关于javascript - 如何根据输入有条件地隐藏输入表单的某些部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44113494/

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