如何将Google登录功能集成到Angular 5
$(function() {
var table = $('#example').DataTable(
{
scrollY: "300px",
scrollX: true,
scrollCollapse: true,
paging: false,
ordering: false,
bInfo: false,
searching: false,
fixedColumns: {
leftColumns: 1,
heightMatch: 'auto'
},
});
$('tr').on('click', function() {
let index = $(this).data('id');
$('.tr_'+index).hide(function()
{
table.draw();
});
});
});