your js file should be in order as such
- Jquery file
- Jquery datatable file
the script tag where you initialize datatable
$(document).ready( function () {
$('#myTable').DataTable();
} );
order of your script tags
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
2nd
<script src="cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
you have written datatable first then jquery which is wrong
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…