gpt4 book ai didi

javascript - 数据表样式不起作用

转载 作者:行者123 更新时间:2023-12-04 00:56:06 25 4
gpt4 key购买 nike

我有一个特殊的问题。我正在开发一个需要数据表才能使用的 php 站点。我注意到当我在本地主机上运行它时,无论是 Firefox 还是 Chrome,Datatables 样式都不起作用。我的代码如下:

<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="text/css" href="//cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css"/>
<script src="//code.jquery.com/jquery-2.2.3.js" type="text/javascript"></script>
<script src="//cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js" type="text/javascript"></script>
<script>
$(document).ready(function() {
$('#example').DataTable();
} );
</script>
</head>
<body>
<table id="example" 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>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>61</td>
<td>2011/04/25</td>
<td>$320,800</td>
</tr>
<tr>
<td>Garrett Winters</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>63</td>
<td>2011/07/25</td>
<td>$170,750</td>
</tr>
<tr>
<td>Ashton Cox</td>
<td>Junior Technical Author</td>
<td>San Francisco</td>
<td>66</td>
<td>2009/01/12</td>
<td>$86,000</td>
</tr>
</tbody>
</table>
</body>
</html>

这给了我一个相当丑陋的数据表版本。搜索功能和过滤功能有效,但缺少样式和列重新排序。

然而奇怪的是,我绘制的 jsfiddle 包含与预期相同的数据呈现,所有样式等...... fiddle 链接如下: https://jsfiddle.net/gkyya29h/

我使用 XAMPP 服务器和 firefox 作为我的默认浏览器。有人可以帮我解决这个问题吗?我可能会犯一些非常明显的错误,但我没有看到它。谢谢你。

最佳答案

<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css">

您指向 CSS 的链接标签是错误的。也许某些浏览器无法正确处理它。

关于javascript - 数据表样式不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39066237/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com