Home > Web Front-end > HTML Tutorial > html checkbox implements all selection/cancel selection_html/css_WEB-ITnose

html checkbox implements all selection/cancel selection_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:42:16
Original
1309 people have browsed it

html checkbox  实现全选/取消全选




<html><body>	<table border="1">		<tr>			<th><input type="checkbox" onclick="swapCheck()" /></th>			<th>Month</th>			<th>Savings</th>		</tr>		<tr>			<td><input type="checkbox" /></td>			<td>January</td>			<td>$100</td>		</tr>		<tr>			<td><input type="checkbox" /></td>			<td>February</td>			<td>$150</td>		</tr>	</table>	<script type="text/javascript"		src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>	<script type="text/javascript">		//checkbox 全选/取消全选		var isCheckAll = false;		function swapCheck() {			if (isCheckAll) {				$("input[type='checkbox']").each(function() {					this.checked = false;				});				isCheckAll = false;			} else {				$("input[type='checkbox']").each(function() {					this.checked = true;				});				isCheckAll = true;			}		}	</script></body></html>
Copy after login



效果图:



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