jquery判断radioButton是否被选中

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))

时间: 2024-10-12 12:27:33

jquery判断radioButton是否被选中的相关文章

jquery判断单选按钮radio是否选中的方法

JQuery控制radio选中和不选中方法总结 一.设置选中方法 复制代码代码如下: $("input[name='名字']").get(0).checked=true; $("input[name='名字']").attr('checked','true');$("input[name='名字']:eq(0)").attr("checked",'checked'); $("input[name='radio_nam

jQuery 判断checkbox是否被选中 4种方法

下午写JS验证,有一个需求需要判断 checkbox是否被选择,查阅相关资料后,总结以下4种方法,分享给大家. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>jQuery 判断checkbox是否被选中 4种方法</title> <script src="jquery-1.8.3.min

jquery判断按钮是否被选中了

<script type="text/javascript"> function genjin_view2(elm){ if($(elm).attr("checked")=="checked"){ //jquery判断按钮是否被选中了 alert(888); } } </script>

Jquery判断checkbox是否被选中

判断checkbox是否被选中方法一:if ($("#checkbox-id")get(0).checked) { // do something}选中:true没选:false $("#formal").get(0).checkedtrue$("#formal").get(0).checkedfalse 方法二:if($('#checkbox-id').is(':checked')) { // do something}选中:true没选:fa

使用jquery/javascript判断及改变checkbox选中状态

一.使用jquery判断及改变checkbox选中状态 1.使用JQuery判断一个checkbox 是否为选中: (1).attr('checked) 看JQuery版本1.6+返回:"checked"或"undefined" ;1.5-返回:true或false (2).prop('checked') 1.6+:true/false (3).is(':checked') eg:$("input[type='checkbox']").is(':

jquery 判断checkbox 是否选中

这是一个蛋疼的节奏,以前写的代码现在失效了. jquery 判断checkbox 是否被选中,刚开始我是这样写的,而且没问题 $("#ziduana").attr("checked")=="checked" 后来竟然失效了, 后来试了 $("ziduana").attr("checked")==true  , $("#ziduana").is(":checked")

JQuery判断radio是否选中并获取选中值的示例代码

这篇文章主要介绍了JQuery判断radio是否选中并获取选中值的方法,代码很简单,但很实用,需要的朋友可以参考下 其他对radio操作功能,以后在添加.直接上代码,别忘记引用JQuery包 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 <!DOCTYPE html PUBLIC "

Jquery判断是否选中

var slength = $(":checkbox[name='News[show_or_hide]']:checked").size(); if (slength>0 ) { $("div.field-news-other_tag").show(); $("div.field-news-sub_special").show(); } else { $("div.field-news-other_tag").hide(

JQuery判断radio是否选中,获取选中值

/*---------------------------JQuery判断radio是否选中,获取选中值----------------------------------*/ 其他对radio操作功能,以后在添加.直接上代码,别忘记引用JQuery包 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transit