ฉันพยายามที่จะทำงานกับ jQuery ของ DataTable JS สำหรับโครงการของฉันจากนี้การเชื่อมโยง
ฉันดาวน์โหลดไลบรารีทั้งหมดจากแหล่งเดียวกัน ตัวอย่างทั้งหมดที่ให้ไว้ในแพ็กเกจดูเหมือนจะใช้งานได้ดี แต่เมื่อฉันพยายามรวมไว้ใน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
ฉันยังไม่ได้ผูกข้อมูลไดนามิกใด ๆ ที่นี่ (เช่นภายในตัวทำซ้ำหรือมากกว่านั้น) ยังคงใช้งานไม่ได้
ใครช่วยแนะนำฉันในทิศทางที่ถูกต้องสำหรับปัญหานี้ได้ไหม