gpt4 book ai didi

javascript - hide() 在运行时不起作用

转载 作者:行者123 更新时间:2023-11-28 11:38:24 25 4
gpt4 key购买 nike

我编写了一个脚本,可以通过一些考虑的单选按钮隐藏或显示我的类,但它在运行时不起作用并且不会动态更改,有什么想法吗?

我的脚本:

    $(document).ready(function() {
if (document.getElementById('addContent').checked) {
$(".contentForm").show();
$(".searchContentForm").hide();
}
else if (document.getElementById('editContent').checked ||
document.getElementById('deleteContent').checked) {
$(".searchContentForm").show();
$(".contentForm").hide();
}
else {
$(".searchContentForm").hide();
$(".contentForm").hide();
}
});​

JsFiddle 演示: http://jsfiddle.net/BpMed/

最佳答案

简化代码:

$(".searchContentForm").hide();
$(".contentForm").hide();
$('input[name=tContent]').click(function() {
if ($('#addContent').is(':checked')) {
$(".contentForm").show();
$(".searchContentForm").hide();
}
else if ($('#editContent').is(':checked') ||
$('#deleteContent').is(':checked')) {
$(".searchContentForm").show();
$(".contentForm").hide();
}
});

引用LIVE DEMO

关于javascript - hide() 在运行时不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12746739/

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