当前位置:首页>开发>正文

怎样使用jquery选中单选按钮 如何用js实现将当前点击的单选按钮变为选中状态

2023-06-25 00:50:26 互联网 未知 开发

 怎样使用jquery选中单选按钮 如何用js实现将当前点击的单选按钮变为选中状态

怎样使用jquery选中单选按钮

使用jquery获取radio的值,最重要的是掌握jquery选择器的使用,在一个表单中我们通常是要获取被选中的那个radio项的值,所以要加checked来筛选,比如有以下的一些radio项:

1.<input type="radio" name="testradio" value="jquery获取radio的值" />jquery获取radio的值
2.<input type="radio" name="testradio" value="jquery获取checkbox的值" />jquery获取checkbox的值
3.<input type="radio" name="testradio" value="jquery获取select的值" />jquery获取select的值
要想获取某个radio的值有以下的几种方法,直接给出代码:
1、

1.$(input[name="testradio"]:checked).val()2、
1.$(input:radio:checked).val()3、
1.$(input[@name="testradio"][checked])4、
1.$(input[name="testradio"]).filter(:checked)差不多挺全的了,如果我们要遍历name为testradio的所有radio呢,代码如下

1.$(input[name="testradio"]).each(function(){2.alert(this.value)3.})如果要取具体某个radio的值,比如第二个radio的值,这样写
1.$(input[name="testradio"]:eq(1)).val()

如何用js实现将当前点击的单选按钮变为选中状态?

js取单选框的值需要循环遍历判断checked属性是否为真。


1
2
3



function usubmit(action){//获取radio的value的方法
var radios = document.getElementById("list").user//获取id为list下的所有name为user的值的集合
for(var i=0iif(radionum[i].checked){//通过checked属性判断是否被选中
userid = radionum[i].value//将被选择的radio的值赋给变量userid
}
}
alert(userid)//弹出被选中的radio的值
}
</script>

jquery点击按钮,使单选框选择一个指定的值

function button11() {
$("#firstRadion2").attr("checked","true")
}

单选 单选 单选


题主还要多努力啊 好几个错误 onclick=""中的function有()的 然后id只能是唯一的啊
另外 你要点击选择单选2的话 应该是获取单选2的id而不是按钮的id 另外checked 设置true才是选中

jquery怎么选中checkbox

1、checkbox日常jquery操作。
现在我们以下面的html为例进行checkbox的操作。
<input id="checkAll" type="checkbox" />全选
        <input name="subBox" type="checkbox" />项1
        <input name="subBox" type="checkbox" />项2
        <input name="subBox" type="checkbox" />项3
        <input name="subBox" type="checkbox" />项4

全选和全部选代码:
<script type="text/javascript">
        $(function() {
           $("#checkAll").click(function() {
                $(input[name="subBox"]).attr("checked",this.checked) 
            })
            var $subBox = $("input[name=subBox]")
            $subBox.click(function(){
                $("#checkAll").attr("checked",$subBox.length == $("input[name=subBox]:checked").length ? true : false)
            })
        })
    </script>

checkbox属性:
var val = $("#checkAll").val()// 获取指定id的复选框的值  
var isSelected = $("#checkAll").attr("checked") // 判断id=checkAll的那个复选框是否处于选中状态,选中则isSelected=true否则isSelected=false  
$("#checkAll").attr("checked", true)// or  
$("#checkAll").attr("checked", checked)// 将id=checkbox_id3的那个复选框选中,即打勾  
$("#checkAll").attr("checked", false)// or  
$("#checkAll").attr("checked", )// 将id=checkbox_id3的那个复选框不选中,即不打勾  
$("input[name=subBox][value=3]").attr("checked", checked)// 将name=subBox, value=3 的那个复选框选中,即打勾  
$("input[name=subBox][value=3]").attr("checked", )// 将name=subBox, value=3 的那个复选框不选中,即不打勾  
$("input[type=checkbox][name=subBox]").get(2).checked = true// 设置index = 2,即第三项为选中状态  
$("input[type=checkbox]:checked").each(function(){ //由于复选框一般选中的是多个,所以可以循环输出选中的值  
    alert($(this).val())  
}) 

2、radio的jquery日常操作及属性
我们仍然以下面的html为例:
<input type="radio" name="radio" id="radio1" value="1" />1  
<input type="radio" name="radio" id="radio2" value="2" />2  
<input type="radio" name="radio" id="radio3" value="3" />3  
<input type="radio" name="radio" id="radio4" value="4" />4 

radio操作如下:
$("input[name=radio]:eq(0)").attr("checked",checked) //这样就是第一个选中咯。
  //jquery中,radio的选中与否和checkbox是一样的。
$("#radio1").attr("checked","checked")
$("#radio1").removeAttr("checked")
$("input[type=radio][name=radio]:checked").length == 0 ? "没有任何单选框被选中" : "已经有选中"  
$(input[type="radio"][name="radio"]:checked).val() // 获取一组radio被选中项的值  
$("input[type=radio][name=radio][value=2]").attr("checked", "checked")// 设置value = 2的一项为选中  
$("#radio2").attr("checked", "checked") // 设置id=radio2的一项为选中  
$("input[type=radio][name=radio]").get(1).checked = true // 设置index = 1,即第二项为当前选中  
var isChecked = $("#radio2").attr("checked")// id=radio2的一项处于选中状态则isChecked = true, 否则isChecked = false  
var isChecked = $("input[type=radio][name=radio][value=2]").attr("checked")// value=2的一项处于选中状态则isChecked = true, 否则isChecked = false  

3、select下拉框的日常jquery操作
select操作相比checkbox和radio要相对麻烦一些,我们仍然以下面的html为例来说明:
<select name="select" id="select_id" style="width: 100px">  
    <option value="1">11</option>  
    <option value="2">22</option>  
    <option value="3">33</option>  
    <option value="4">44</option>  
    <option value="5">55</option>  
    <option value="6">66</option>  
</select> 

看select的如下属性:
   $("#select_id").change(function(){                         // 1.为Select添加事件,当选择其中一项时触发   
        //code...  
    })  
    var checkValue = $("#select_id").val()                    // 2.获取Select选中项的Value  
    var checkText = $("#select_id :selected").text()          // 3.获取Select选中项的Text   
    var checkIndex = $("#select_id").attr("selectedIndex")    // 4.获取Select选中项的索引值,或者:$("#select_id").get(0).selectedIndex  
    var maxIndex =$("#select_id :last").get(0).index        // 5.获取Select最大的索引值
    /** 
     * jQuery设置Select的选中项 
     */  
    $("#select_id").get(0).selectedIndex = 1                  // 1.设置Select索引值为1的项选中  
    $("#select_id").val(4)                                    // 2.设置Select的Value值为4的项选中  
    /** 
     * jQuery添加/删除Select的Option项 
     */  
    $("#select_id").append("<option value=新增>新增option</option>")    // 1.为Select追加一个Option(下拉项)   
    $("#select_id").prepend("<option value=请选择>请选择</option>")   // 2.为Select插入一个Option(第一个位置)  
    $("#select_id").get(0).remove(1)                                      // 3.删除Select中索引值为1的Option(第二个)  
    $("#select_id :last").remove()                                        // 4.删除Select中索引值最大Option(最后一个)   
    $("#select_id [value=3]").remove()                                  // 5.删除Select中Value=3的Option   
    $("#select_id").empty()             

   $("#select_id").find("option:selected").text() // 获取select 选中的 text :

   $("#select_id").val() // 获取select选中的 value:

     $("#select_id").get(0).selectedIndex // 获取select选中的索引:

//设置select 选中的value:
    $("#select_id").attr("value","Normal")
    $("#select_id").val("Normal")
    $("#select_id").get(0).value = value

 //设置select 选中的text,通常可以在select回填中使用
var numId=33 //设置text==33的选中!
var count=$("#select_id  option").length
  for(var i=0i<counti )  
     {           if($("#select_id").get(0).options[i].text == numId)  
        {  
            $("#select_id").get(0).options[i].selected = true  
            break  
        }  
    }

通过上面的总结,应该对jquery的checkbox,radio和select有了一定的了解了吧,温故而知新,用多了就会变的熟练起来,即使有时候忘记了,也可以来翻一翻!

jquery怎么实现单选,我能实现全选,实现不了单选,求解

$("input:radio").click(function(){
$(this).css("checked","checked")

})
类似这种方式实现,只对当前操作的进行操作

最新文章