javascript刪除行的實作方法:先新建一個html檔;然後在<script>標籤中輸入程式碼「click(function () {$(this).parent().parent().remove ();});」即可。 </script>
本文操作環境:windows7系統、javascript1.8.5版,DELL G3電腦。
1、首先,開啟html編輯器,新html文件,例如:index.html,插入所需的表格。
2、之後在index.html的<script>標籤中,輸入程式碼:<code>$('button').click(function () {$ (this).parent().parent().remove();});。 </script>
3、瀏覽器運行index.html頁面,點擊第1行的刪除按鈕,確實刪除了第1行,且程式碼不是以行號的形式。
【推薦學習:js基礎教學】
以上是javascript怎麼刪除行的詳細內容。更多資訊請關注PHP中文網其他相關文章!