gpt4 book ai didi

jquery - 在选择更改时隐藏表单元素

转载 作者:行者123 更新时间:2023-12-01 06:56:08 25 4
gpt4 key购买 nike

嗨,我正在尝试隐藏表单元素,除非选择了特定的下拉值;到目前为止,这是我的代码,但它不起作用?

<script type="text/javascript">

$(document).ready(function() {
$('txt_ccode').change(function() {
if ($(this).val() == 'GB') {
document.getElementById('txt_postcode').style.display="block";
}
else {document.getElementById('txt_postcode').style.display="none"; }

});
});
</script>

感谢任何帮助

最佳答案

而不是

$('txt_ccode')

您可能想要:

$('#txt_ccode')

$('.txt_ccode')

取决于您将元素的 id 和/或 class 属性设置为什么。

此外,您可以重新编写代码以使其更加简洁:

$('#txt_ccode').change(function() {
$('#txt_postcode').toggle($(this).val() === 'GB');
});

关于jquery - 在选择更改时隐藏表单元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8804056/

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