在做使用者查找時 因為要把查找的結果動態載入和顯示,所以,那些html元素要由Ajax動態產生。用戶打開查找介面時,有系統推薦的用戶,而當用戶按條件查找後,查找的結果動態載入和顯示。所以考慮到用js來搞。 這個for迴圈就是移除已有的表單。然後根據Ajax請求過來的數據,動態產生新的表單物件。一定要注意j變數從大往小循環,否則,刪除div元素後會引起serchResultLenth=serchResult.children.length;長度的變化(這個問題摸索了好久,才搞定,切記) 複製程式碼 程式碼如下: for(var j=serchResultLenth-1;j>=0;j--){ var serchChild=document.getElementById(serchResult.children[j].id); serchResult.removeChild(serchChild); }