Home > Web Front-end > JS Tutorial > body text

How to make a checkbox select only one item_javascript skills

WBOY
Release: 2016-05-16 17:20:40
Original
1390 people have browsed it

In js:

Copy code The code is as follows:

function chooseOne(chk){
//First get the collection object of chekcBox with the same name
var obj = document.getElementsByName("chk");
for (i=0; i//Judge Whether the i element in the obj collection is cb, if not it means it has not been selected
if (obj[i]!=chk) obj[i].checked = false;
//To check at least one If so, remove the else line above and replace it with the following line
else obj[i].checked = true;
}
}

jsp page:
Copy code The code is as follows:


Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!