Home >Web Front-end >JS Tutorial >How to make a checkbox select only one item_javascript skills

How to make a checkbox select only one item_javascript skills

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 17:20:401470browse

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:


Statement:
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