gpt4 book ai didi

jQuery 单选按钮组验证并启用选项(如果选中某些单选按钮)(提供了 jsfiddle)

转载 作者:行者123 更新时间:2023-12-01 03:39:53 25 4
gpt4 key购买 nike

我是 jQuery 新手。

我将如何检查是否选中了其中一​​个单选按钮,如果选中了其他单选按钮,则启用文本选项。如果没有,则禁用它。我没有在这里放置完整的代码,但它或多或少是相同的。

http://jsfiddle.net/Opetus/8Ahcz/

HTML <table>
<tr>
<td id="second">
<input type="radio" name="inquire" id="9" class="css-checkbox"/>
<label for="9" class="css-label radGroup1 radGroup2">3D</label>
</td>
<td id="second">
<input type="radio" name="inquire" id="10" class="css-checkbox" />
<label for="10" class="css-label radGroup1 radGroup2">Coding</label>
</td>
<td id="opt">
<input type="radio" name="inquire" id="11" class="css-checkbox" />
<label for="11" class="css-label radGroup1 radGroup2">Other:</label>
<input type="text" name="other" id="other" />
</td>
</tr>
</table>

已回答

`$('.css-checkbox').click(function(){
alert($(this).attr('id'));
if($(this).attr('id') == 11)
$('#other').prop('disabled', false);
else
{
$('#other').prop('disabled', true);
$('#other').val('');
}
});`

注意如果为此添加颜色框,请将颜色框代码放在上面的答案之后。否则,提交无效。

最佳答案

我已经更新了 fiddle 。看看这里 http://jsfiddle.net/shinde87sagar/8Ahcz/3/

我刚刚添加了这段代码。

   $('.css-checkbox').click(function(){
alert($(this).attr('id'));
if($(this).attr('id') == 11)
$('#other').prop('disabled', false);
else
{
$('#other').prop('disabled', true);
$('#other').val('');
}
});

我已进行更改,请检查。

关于jQuery 单选按钮组验证并启用选项(如果选中某些单选按钮)(提供了 jsfiddle),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23968777/

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