标签:js代码 UNC 前端 table 删除 cti ring conf efi
<script>
layui.use([‘form‘, ‘table‘], function () {
table.on(‘tool(currentTableFilter)‘, function (obj) {
var data = obj.data;
if (obj.event === ‘delete‘) {
layer.confirm(‘真的删除行么‘, function (index) {
obj.del();
layer.close(index);
var student_id = JSON.stringify(obj.data.id);
window.location = "index.php?s=index/table/delete&student_id=" + student_id;
});
}
});
});
</script>
public function delete()
{
// $student_id = $_REQUEST[‘student_id‘];
$student_id = Request::instance()->get(‘student_id‘);
echo $student_id;
}
标签:js代码 UNC 前端 table 删除 cti ring conf efi
原文地址:https://www.cnblogs.com/oeong/p/13236183.html