最佳答案
我正在尝试与 jQuery 的可数据化 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
我还没有绑定任何动态数据在这里(如在中继器左右) ,它仍然不工作。
有没有人能给我指点一下解决这个问题的正确方向?