gpt4 book ai didi

jquery - 如何使用 jQuery 设置单选选项检查 onload

转载 作者:IT王子 更新时间:2023-10-29 03:23:39 24 4
gpt4 key购买 nike

如何使用 jQuery 设置选中的单选选项?

需要检查是否没有设置默认值,然后设置一个默认值

最佳答案

假设您有这样的单选按钮,例如:

    <input type='radio' name='gender' value='Male'>
<input type='radio' name='gender' value='Female'>

如果没有选中 radio ,你想检查值为“Male”的 onload:

    $(function() {
var $radios = $('input:radio[name=gender]');
if($radios.is(':checked') === false) {
$radios.filter('[value=Male]').prop('checked', true);
}
});

关于jquery - 如何使用 jQuery 设置单选选项检查 onload,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/871063/

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