var len = $("input[name='nation ']:checked").length; if(len==0) { alert("Please select the qualifying national team!"); return false; }else if(len< ;2) { alert("Please select two national teams!"); return false; }else if(len>2) { alert("Only two countries can be selected Team! "); return false; }else { return true; }
//Select the national team with an even number $(" input[name='nation']:even").attr("checked",true); //Select the national team with an odd index $("input[name='nation']:odd ").attr("checked",true);
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn