歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

jQuery對多選框(checkbox)和單選框(radio)的操作

jQuery 操作 radio

<input type="radio" value="remove" name="execution"> 

<input type="radio" value="add" name="execution"> 

獲取radio的值

var execute = $('input:radio[name="execution"]:checked').val(); 
if(execute == null) { 
        console.log("radio don't selected"); 
        return false; 
}else{ 
        console.log(execute); 

如果radio沒有選中,val()返回為“null”。

Copyright © Linux教程網 All Rights Reserved