国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

JavaScript獲取表格(table)當前行的值、刪除行、增加行

2019-11-20 12:06:42
字體:
來源:轉載
供稿:網友
<html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>Js獲取 table當前行的值</title><script language=javascript>	var selectedTr = null;	function c1(obj) {		obj.style.backgroundColor = 'blue'; //把點到的那一行變希望的顏色; 		if (selectedTr != null)			selectedTr.style.removeAttribute("backgroundColor");		if (selectedTr == obj)			selectedTr = null;//加上此句,以控制點擊變白,再點擊反灰 		else			selectedTr = obj;	}	/*得到選中行的第一列的值*/	function check() {		if (selectedTr != null) {			var str = selectedTr.cells[0].childNodes[0].value;			document.getElementById("lab").innerHTML = str;		} else {			alert("請選擇一行");		}	}	/*刪除選中行*/	function del() {		if (selectedTr != null) {			if (confirm("確定要刪除嗎?")) {				alert(selectedTr.cells[0].childNodes[0].value);				var tbody = selectedTr.parentNode;				tbody.removeChild(selectedTr);			}		} else {			alert("請選擇一行");		}	}</script></head><body>	單擊選中Tr,高亮顯示,再單擊取消選選中。	<input type=button value="選中的是哪一行?" onclick="check()">	<input type=button value="刪除選中行" onclick="del()">	<input type=button value="增加一行" onclick="add()">	<table width="100%" border="1" cellspacing="0" cellpadding="0" id="tab">		<tr onclick="c1(this);" bgcolor="#cccccc">			<td><input type="text" value="11"></td>			<td><input type="text" value="12"></td>		</tr>		<tr onclick="c1(this);" bgcolor="#e0e0e0">			<td><input type="text" value="21"></td>			<td><input type="text" value="22"></td>		</tr>		<tr onclick="c1(this);" bgcolor="#cccccc">			<td><input type="text" value="31"></td>			<td><input type="text" value="32"></td>		</tr>		<tr onclick="c1(this);" bgcolor="#e0e0e0">			<td><input type="text" value="41"></td>			<td><input type="text" value="42"></td>		</tr>		<tr onclick="c1(this);" bgcolor="#cccccc">			<td><input type="text" value="51"></td>			<td><input type="text" value="52"></td>		</tr>	</table>	<label id="lab"></label></body></html>

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 龙州县| 鄂尔多斯市| 独山县| 土默特左旗| 仙居县| 郓城县| 库伦旗| 锦州市| 台州市| 富裕县| 岳西县| 石楼县| 马关县| 区。| 佛山市| 吴江市| 大化| 全南县| 稻城县| 瑞丽市| 宝山区| 米易县| 民乐县| 基隆市| 女性| 郓城县| 永修县| 响水县| 靖西县| 谷城县| 枞阳县| 区。| 信阳市| 珲春市| 武义县| 临武县| 曲松县| 徐闻县| 绥中县| 宁南县| 灵川县|