<!DOCTYPE?html><html>?<head>??<title>?new?document?</title>??<meta?http-equiv="Content-Type"?content="text/html;?charset=utf-8"/>??<script?type="text/javascript">window.onload?=?function(){var?tr?=?document.getElementById('table').getElementsByTagName('tr');//?console.log(tr);?????//?鼠標移動改變背景,可以通過給每行綁定鼠標移上事件和鼠標移除事件來改變所在行背景色。?????????for?(var?i?=?1;i<?tr.length;i++){????????? tr[i].onmouseover=?function(){????????? this.style.backgroundColor?="#f2f2f2";????????? };????????????tr[i].onmouseout?=?function(){????????????????this.style.backgroundColor="#fff";????????????}????????}}//?編寫一個函數(shù),供添加按鈕調用,動態(tài)在表格的最后一行添加子節(jié)點;function?addContent(){????xh?=?prompt('請輸入學號','');????xm?=?prompt('?請輸入姓名','');????if(xh?!=null?&&?xh?!=''?&&?xm?!=null?&&?xm?!=''){????????alert('添加成功');????????var?tr?=?document.createElement('tr');????????var?td?=?document.createElement('td');????????var?td1?=?document.createElement('td');????????var?td2?=?document.createElement('td');????????td.innerHTML=?xh;????????td1.innerHTML?=?xm;????????td2.innerHTML?=?'<a?href="javascript:;"??onclick="delet()">刪除</a>';????????tr.appendChild(td);????????tr.appendChild(td1);????????tr.appendChild(td2);????????document.getElementById('table').lastChild.appendChild(tr);????}else{????????alert('請輸入,學號姓名');????}}?????//?創(chuàng)建刪除函數(shù)function?delet(){????var?a?=?document.getElementById('table').getElementsByTagName('a');????//?console.log(a);????for?(var?i?=?0;i<?a.length;?i++){??????a[i].onclick=function(){????????this.parentNode.parentNode.parentNode.removeChild(this.parentNode.parentNode);??????}????}}??</script>?</head>?<body> ???<table?border="1"?width="50%"?id="table"> ???<tr> <th>學號</th> <th>姓名</th> <th>操作</th> ???</tr> ???<tr> <td>xh001</td> <td>王小明</td> <td><a?href="javascript:;"?onclick="delet()">刪除1</a></td>???<!--在刪除按鈕上添加點擊事件??--> ???</tr> ???<tr> <td>xh002</td> <td>劉小芳</td> <td><a?href="javascript:;"?onclick="delet()">刪除2</a></td>???<!--在刪除按鈕上添加點擊事件??--> ???</tr> ???</table> ???<input?type="button"?value="添加一行"?onclick="addContent()"?/>???<!--在添加按鈕上添加點擊事件??-->?</body></html>
2022-03-26
NOTICE沒關系,這個不是錯,這個是注意。PHP是弱類型語言,變量可以不聲明直接使用。你可以設置下你PHP報錯級別就可以了E_ALL~E_NOTICE就在前一小節(jié),$this->speed是訪問內部變量的意思,相當于$speed