首页 > 代码库 > 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使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。