完成拉啦啦
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>? ?
? <script type="text/javascript">?
??
? ? ? window.onload = function(){
? ? ? ? ? ? ? ? ??
? ? ?// 鼠標(biāo)移動改變背景,可以通過給每行綁定鼠標(biāo)移上事件和鼠標(biāo)移除事件來改變所在行背景色。
? ? ? ? ?
changeColor();
}
?
function changeColor() {
? ? ?var trs = document.getElementsByTagName("tr");
? ? ?
? ? ?for(var i = 1; i < trs.length; i++){
? ? ? ? ?trs[i].setAttribute("onmouseover", "addColor(this)");
? ? ? ? ?trs[i].setAttribute("onmouseout", "deleteColor(this)");
? ? ?}
}
?
function addColor(obj) {
? ? ?obj.style.background = "#f2f2f2";
}
?
function deleteColor(obj) {
? ? ?obj.style.background = "#ffffff";
}
? ? ?
? ? ? // 編寫一個函數(shù),供添加按鈕調(diào)用,動態(tài)在表格的最后一行添加子節(jié)點(diǎn);
? ? ?function addRow() {
? ? ? ? ?var id = prompt("請輸入學(xué)號", '');
? ? ? ? ?var name = prompt("請輸入姓名", '')
? ? ? ? ?var tr = document.createElement("tr");
? ? ? ? ?var td_id = document.createElement("td");
? ? ? ? ?td_id.innerHTML = id;
? ? ? ? ?var td_name = document.createElement("td");
? ? ? ? ?td_name.innerHTML = name;
? ? ? ? ?var td_delete = document.createElement("td");
? ? ? ? ?var a = document.createElement("a");
? ? ? ? ?a.setAttribute("href", "javascript:;");
? ? ? ? ?a.setAttribute("onclick", "deleteRow(this)");
? ? ? ? ?a.innerHTML = "刪除";
? ? ? ? ?td_delete.appendChild(a);
? ? ? ? ?tr.append(td_id, td_name, td_delete);
? ? ? ? ?document.getElementsByTagName("table")[0].appendChild(tr);
? ? ? ? ?
? ? ? ? ?changeColor();
? ? ? ? ?
? ? ?}
? ?
? ? ?
? ? ?// 創(chuàng)建刪除函數(shù)
? ? ?function deleteRow(obj) {
? ? ? ? ?obj.parentNode.parentNode.parentNode.removeChild(obj.parentNode.parentNode)
? ? ?}
? </script>?
?</head>?
?<body>?
? ?<table border="1" width="50%" id="table">
? ?<tr>
<th>學(xué)號</th>
<th>姓名</th>
<th>操作</th>
? ?</tr>??
? ?<tr>
<td>xh001</td>
<td>王小明</td>
<td><a href="javascript:;" onclick="deleteRow(this)">刪除</a></td>? ?<!--在刪除按鈕上添加點(diǎn)擊事件? -->
? ?</tr>
? ?<tr>
<td>xh002</td>
<td>劉小芳</td>
<td><a href="javascript:;" onclick="deleteRow(this)">刪除</a></td>? ?<!--在刪除按鈕上添加點(diǎn)擊事件? -->
? ?</tr>??
? ?</table>
? ?<input type="button" value="添加一行" onclick="addRow()" />? ?<!--在添加按鈕上添加點(diǎn)擊事件? -->
?</body>
</html>
2020-08-18
請問刪除里邊的obj是什么作用呀