我在角2中有一個簡單的應用程序。我想在分頁表中顯示數據。我發現this example非常好,我想在我的應用程序中使用。如何將dataTable包含到angular 2應用程序中?
該示例的
html
是home.component.html
,該示例的
css
是在腳本中index.html
像:
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.15/css/jquery.dataTables.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/select/1.2.2/css/select.dataTables.min.css">
我想知道我應該把Java腳本代碼放在哪裏才能工作。我試圖把index.html
和home.compose.html
,但沒有任何工作正常。
請告訴我在哪裏java腳本代碼應該去。 謝謝。 這是JavaScript:
$(document).ready(function() {
$('#example').DataTable({
columnDefs: [ {
orderable: false,
className: 'select-checkbox',
targets: 0
} ],
select: {
style: 'os',
selector: 'td:first-child'
},
order: [[ 1, 'asc' ]]
});
});
似乎在這個合理的資源已經[如何使用jQuery與Angular2?](http://stackoverflow.com/questions/30623825/how-to-use-jquery-with-angular2) –