gpt4 book ai didi

jquery - 当浏览器重新加载时设置 onchange 事件

转载 作者:行者123 更新时间:2023-12-01 04:58:59 25 4
gpt4 key购买 nike

我有以下代码,在选择"is"时显示输入框方面工作正常。我的问题是,如果在提交过程中任何其他框出现错误并且占位符下拉列表设置为"is",则它不会显示 placeholderValue 输入框。

如何调整此代码,以便如果我的代码出错并且输入框设置为"is",它将显示 placeholderValue 输入框。

jQuery:

$("#add_fields_placeholder").change(function()
{
if($(this).val() == "yes")
{
$('label[for="add_fields_placeholderValue"]').show();
$("#add_fields_placeholderValue").show();
}
else
{

$('label[for="add_fields_placeholderValue"]').hide();
$("#add_fields_placeholderValue").hide();
}
});

最佳答案

您需要触发您的 <select>验证代码更新后手动更改事件:$("#add_fields_placeholder").trigger("change");

关于jquery - 当浏览器重新加载时设置 onchange 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11961248/

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