gpt4 book ai didi

jquery - 根据单选按钮显示隐藏字段

转载 作者:行者123 更新时间:2023-12-01 02:33:35 25 4
gpt4 key购买 nike

我正在尝试让隐藏的文本字段在单击单选按钮时显示。

我是 jQuery 的新手,一直在查看不同的代码示例和教程,但它们在 jQuery 的不同版本中都略有不同,并且对我的代码中哪些是新的、哪些是旧的感到困惑。有些人建议进行更改,另一些人则点击(这对我来说更有意义,但我可能完全错了)。

这是我的代码的一部分:

一、形式:

Are you eighteen or above?<br/>
<input type="radio" id="age" name="age" value="yes"/>Yes<br/>
<input type="radio" id="age" name="age" value="no"/>No<br/><br/>

<!-- if no is selected the below text form shall appear -->
<div id="agetext">
If no, please tell us your date of birth:<br/>
<textarea id="age" name="agetext" rows="5" cols="40"></textarea><br/><br/>
</div>

其次,脚本(位于 head 标签中):

$(document).ready(function() 
{
$("#agetext").hide();
$("#agetextgo").click(function()
{
if ( $('input[name="age"]:checked').val() == "no")
{
$("#agetext").show();
}
else ( $('input[name="age"]:checked').click() == "yes")
$("#agetext").hide();
});

最佳答案

这样做:-

$("#agetext").hide();
$("input[name=age]").click(function()
{
if ( $("#age1").attr('checked'))
$("#agetext").hide();
else
$("#agetext").show();
});

LIVE DEMO

关于jquery - 根据单选按钮显示隐藏字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10258427/

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