码迷,mamicode.com
首页 > Web开发 > 详细

jquery判断radioButton是否被选中

时间:2015-03-02 18:13:16      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

so easy

HTML:

<input type=‘radio‘ style=‘width:20px‘ id=‘other‘ name=‘projectType‘ value=‘其他‘ />
其他(具体类别<input style=‘width:200px‘ type=‘text‘ name=‘exactKind‘ value=‘$!{form.exactKind}‘ />)

JQuery:

if($(‘#other‘).attr(‘checked‘)) {
   alert();
}

值得注意的是,如果==true是不识别的,(用火狐35.0,其他没试)

要写成==‘checked‘

或者

if($(‘#other‘).attr(‘checked‘, true)) 

jquery判断radioButton是否被选中

标签:

原文地址:http://www.cnblogs.com/Teofil/p/4309212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!