このリンクから、プロジェクトでjQueryのDatatableJSを使用しようとしています。
同じソースから完全なライブラリをダウンロードしました。パッケージに含まれているすべての例は正常に機能しているように見えますが、それらを自分のに取り込もうとするWebForms
と、CSS、JSがまったく機能しません。
これが私がしたことです:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="css/jquery.dataTables.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div>
<table id="myTable" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</tfoot>
<tbody>
<!-- table body -->
</tbody>
</table>
</div>
<script src="js/jquery.dataTables.js" type="text/javascript"></script>
<script src="js/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#myTable').DataTable();
});
</script>
</form>
</body>
</html>
ソリューション内のJSとCSSのファイル構造は次のようになります。
マニュアルに示されているように、必要なすべてのJSおよびCSSリファレンスを追加しました。それでも、レンダリングは期待どおりではありません。CSSはなく、JSでさえ機能しません。
また、コンソールで次のエラーが発生します。
ReferenceError: jQuery is not defined
TypeError: $(...).DataTable is not a function
私はまだここで動的データをバインドしていません(リピーター内など)。それでも機能していません。
誰かがこの問題の正しい方向に私を導くことができますか?