1. 程式人生 > >input(type="checkbox"|type="radio")+jquery使用

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

mce on() jquery set play 判斷 func display spl

1、用.is(":checked")判斷input是否為選中狀態

例:

var value=$(this).is(":checked");
localStorage.setItem("displayevelute",value);

2、用.change()判斷input狀態是否改變

$("#Isdisplayevelute").change(function(){
var value=$(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使用