當它到達線this.parentNode.removeChild(this);
parentNode是未定義TR
我得到的錯誤
this.parentNode是不確定的
在我那個發言開始暫停調試器並看到「這個」是:Object[ tr#CMD01.selected ]
這正是我所期望的。 parentNode如何定義?我在這裏搜索了很多類似的問題,並繼續找到「this」不正確的情況,但在我的情況下,它已經被調試器驗證。
$(document).ready(function() {
\t $.fn.deleteThisRow = function() {
\t \t this.parentNode.removeChild(this);
\t };
});
function deleteRow() {
\t $("#theList tr.selected").deleteThisRow();
}
.selected {
\t \t background-color: yellow
\t } \t
<body>
\t <center id='bg'>
\t <table id="cmdList">
\t \t <thead>
\t \t \t <tr id="hdrow">
\t \t \t \t <th>Col1</th>
\t \t \t \t <th>Col2</th>
\t \t \t \t <th>Col3</th>
\t \t \t </tr>
\t \t </thead>
\t \t <tbody id="theList">
\t \t \t <tr id="CMD00">
\t \t \t \t <td>A1</td>
\t \t \t \t <td>A2</td>
\t \t \t \t <td>A3</td>
\t \t \t </tr>
\t \t \t <tr id="CMD01" class="selected">
\t \t \t \t <td>B1</td>
\t \t \t \t <td>B2</td>
\t \t \t \t <td>B3</td>
\t \t \t </tr>
\t \t \t <tr id="CMD02">
\t \t \t \t <td>C1</td>
\t \t \t \t <td>C2</td>
\t \t \t \t <td>C3</td>
\t \t \t </tr>
\t \t </tbody>
\t </table>
\t <table id="buttons">
\t \t <tr>
\t \t \t <td>
\t \t \t \t <button onclick='deleteRow()'>Delete</button>
\t \t \t </td>
\t \t </tr>
\t </table>
\t </center>
</body>
'this.remove()'將起作用 - 請參閱jfriend00的回答爲什麼您的代碼失敗。 –