首页 > 代码库 > input(type="checkbox"|type="radio")+jquery使用

input(type="checkbox"|type="radio")+jquery使用

1、用.is(":checked")判断input是否为选中状态

例:

var value=http://www.mamicode.com/$(this).is(":checked");
localStorage.setItem("displayevelute",value);

 2、用.change()判断input状态是否改变

$("#Isdisplayevelute").change(function(){
var value=http://www.mamicode.com/$(this).is(":checked");
localStorage.setItem("displayevelute",value);
}


3、用jquery选中name为paystate的所有单选框$("input:radio[name=‘paystate‘]"),然后.each()去遍历看那个单选框为选中状态
$("input:radio[name=‘paystate‘]").each(function(index){
var status=$(this).is(":checked");
localStorage.setItem("displayevelute",value);
})

4、$("input:radio[name=‘paystate‘]:eq(index)")可以选中是具体的input(radio)radio,index为索引

input(type="checkbox"|type="radio")+jquery使用