中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JQuery復選框全選效果的實現方法

發布時間:2020-07-28 13:49:14 來源:億速云 閱讀:288 作者:小豬 欄目:web開發

這篇文章主要講解了JQuery復選框全選效果的實現方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

Js相關技術

checked屬性

如何獲取所有復選框:document.getElementsByName、

需求分析

在我們對表格處理的時,有些情況下,我們需要對表格進行批量處理

技術分析

第一種方法:選擇器[屬性名稱='屬性值']

$("input[type='checkbox']:gt(0)").prop("checked",this.checked);

第二種方法:使用層級選擇器來實現 tbody > tr > td > input

$("tbody > tr > td > input").prop("checked",this.checked);

第三種方法:

JQuery復選框全選效果的實現方法

// #tab > tbody > tr:nth-child(4) > td:nth-child(1) > input[type="checkbox"]

代碼實現

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script type="text/javascript" src="../js/jquery-1.11.0.js" ></script>
		
		<script>
						
			/*
			 表格全選和全不選
			 進一步確定事件: 點擊事件
			 
			 */
			$(function(){
				//綁定點擊事件
				//this 代表的是當前函數的所有者
				$("#checkAll").click(function(){
					//獲取當前選中狀態
//					alert(this.checked);
					//獲取所有分類項的checkbox
					// 選擇器[屬性名稱='屬性值']
//					$("input[type='checkbox']:gt(0)").prop("checked",this.checked);
					
					//使用層級選擇器來實現 tbody > tr > td > input
				//	$("tbody > tr > td > input").prop("checked",this.checked); //這個可行

				//	#tab > tbody > tr:nth-child(4) > td:nth-child(1) > input[type="checkbox"]
					$("input").prop("checked",this.checked);
					
				});
			});
			
		</script>
	</head>
	<body>
		<table border="1px" width="600px" id="tab">
			<thead>
				<tr >
					<td>
						<input type="checkbox" id="checkAll" />
					</td>
					<td>分類ID</td>
					<td>分類名稱</td>
					<td>分類商品</td>
					<td>分類描述</td>
					<td>操作</td>
				</tr>
			</thead>
			<tbody>
				<tr>
					<td>
						<input type="checkbox" />
					</td>
				<td>1</td>
				<td>手機數碼</td>
				<td>華為,小米,尼康</td>
				<td>黑馬數碼產品質量最好</td>
				<td>
					<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >修改</a>|<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >刪除</a>
				</td>
			</tr>
			<tr>
				<td>
					<input type="checkbox" />
				</td>
				<td>2</td>
				<td>成人用品</td>
				<td>充氣的</td>
				<td>這里面的充氣電動硅膠的</td>
				<td><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >修改</a>|<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >刪除</a></td>
			</tr>
			<tr>
				<td>
					<input type="checkbox" />
				</td>
				<td>3</td>
				<td>電腦辦公</td>
				<td>聯想,小米</td>
				<td>筆記本特賣</td>
				<td><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >修改</a>|<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >刪除</a></td>
			</tr>
			<tr>
				<td>
					<input type="checkbox" />
				</td>
				<td>4</td>
				<td>饞嘴零食</td>
				<td>辣條,麻花,黃瓜</td>
				<td>年貨</td>
				<td><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >修改</a>|<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >刪除</a></td>
			</tr>
			<tr>
				<td>
					<input type="checkbox" />
				</td>
				<td>5</td>
				<td>床上用品</td>
				<td>床單,被套,四件套</td>
				<td>都是套子</td>
				<td><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >修改</a>|<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >刪除</a></td>
			</tr>
			</tbody>
		</table>
		
	</body>
</html>

看完上述內容,是不是對JQuery復選框全選效果的實現方法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

时尚| 景德镇市| 广宁县| 尼勒克县| 富蕴县| 西乌珠穆沁旗| 中牟县| 秦皇岛市| 清水县| 明光市| 盖州市| 龙陵县| 安化县| 秀山| 海门市| 哈巴河县| 三门县| 北碚区| 柳林县| 望奎县| 梧州市| 马龙县| 长白| 山阴县| 依兰县| 灵璧县| 沙坪坝区| 清镇市| 昭觉县| 赤壁市| 海南省| 北宁市| 达尔| 忻城县| 东至县| 晋中市| 岐山县| 洮南市| 达拉特旗| 思茅市| 和顺县|