gpt4 book ai didi

jquery 在单选按钮上被选中

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

所以,我有 3 个单选按钮:

<input type="radio" name="status" value="enabled" class="radio" <?php if($news_row['status']==1) echo 'checked'; ?> />
<input type="radio" name="status" value="disabled" class="radio" <?php if($news_row['status']==2) echo 'checked'; ?> />
<input type="radio" name="status" value="timer" class="radio" <?php if($news_row['status']==3) echo 'checked'; ?> />

我正在尝试检查是否像这样检查带有值计时器的单选按钮

if($('.radio [value=timer]').is(':checked')) {
console.log('timer');
}

但显然我做错了什么,因为上面的代码不起作用。那么,哪种方法是正确的呢?使用.change()

最佳答案

演示 http://jsfiddle.net/m4m57/5/

问题是这里的空格 f ($('.radio [value=timer]').is(':checked')) {

                                    ^-----------

希望这有帮助,

代码

$('input').on('change', function() {
if ($('.radio[value=timer]').is(':checked')) {
alert('say what');
console.log('timer');
}
});​

关于jquery 在单选按钮上被选中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11224744/

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