How to delete checked rows in the table using javascript (code)

不言
Release: 2018-08-25 11:41:15
Original
4587 people have browsed it

The content of this article is about how to delete the checked rows (code) in the table with JavaScript. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

The first step: Get the data selected in the current table

//devicelist为表格的id属性 var checkStatus = table.checkStatus('devicelist') ,devicecheck_data = checkStatus.data; var id_str=""; for(var i=0;i
        
Copy after login

The second step: Write a method to pass in the table id and the id of the current row (unique identification) to perform the deletion operation

function remove_table_tr(table_id,remove_id){ var that_table=$("#"+table_id).next(); var that_checkid=remove_id.split(","); $(that_table).find(".layui-table-body .layui-table tr").each(function(){ var that_tr=$(this); var that_did=$(that_tr).find("td[data-field='did']").text(); if(that_checkid.indexOf(that_did)!=-1){ //将当前行进行删除操作 $(that_tr).remove(); } }) }
Copy after login

How to delete checked rows in the table using javascript (code)

Related recommendations:

How to select TR in the form and automatically check CHECKBOX

jquery implements highlighting of table rows with checkboxes when selected and deleted_jquery

The above is the detailed content of How to delete checked rows in the table using javascript (code). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!