搜索,排序箭头和分页不使用Datatables.Net插件(当它在CodePen上工作时)

时间:2018-03-15 18:27:14

标签: jquery html datatables

问题:排序箭头,搜索栏和pagnation功能没有出现在我的实时服务器上(但是某些格式化,例如使表格看起来很专业)。我可以根据要求发布链接。

代码:(在实时服务器上不是100%工作):                                             

checkIndex != index

可能的解决方案: 我试图取出 </style> <script type="text/javascript" src="/media/js/site.js?_=7a5408ceb64d5d41e4b1bfb3712796ab"></script> <script type="text/javascript" src="/media/js/dynamic.php?comments-page=examples%2Fdata_sources%2Fdom.html" async></script> <script type="text/javascript" language="javascript" src="https://code.jquery.com/jquery-1.12.4.js"></script> <script type="text/javascript" language="javascript" src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script> <script type="text/javascript" language="javascript" src="../resources/demo.js"></script> <script type="text/javascript" class="init"></script> <script type="text/javascript"> $(document).ready( function () { console.log("Jquery ready"); $('#example').dataTable( { }); }); </script> </head> <table id="example" class="display" style="width:100%"> <thead> <tr> <th> <a class="column_sort" id="id" href="?order=id&sort=<?php echo $sort; ?>"> ID</a> </th> <th><a class="column_sort" id="first_name" href="?order=first_name&sort=<?php echo $sort; ?>">First Name </a> </th> <th><a class="column_sort" id="last_name" href="?order=last_name&sort=<?php echo $sort; ?>">Last Name </a> </th> <th><a class="column_sort" id="position" href="?order=position&sort=<?php echo $sort; ?>">Position </a> </th> <th class="hidden-xs"><a class="column_sort" id="date" href="?order=date&sort=<?php echo $sort; ?>">Date </a> </th> <th class="hidden-xs"> <a class="column_sort" id="updated" href="?order=updated&sort=<?php echo $sort; ?>"> Updated</a> </th> <th>Action</th> </thead> </tr> 中的<a>。我认为&#34; a&#34;标记可能会导致Jquery插件出现问题。然而,什么也没发生。这种情况让我感到困惑,因为我使用的是codePen中完全相同的代码(正在运行)。

找到

EDIT- 错误消息(在控制台中): 我刚刚在控制台中发现了这个错误,这很可能是问题所在:

&#34;拒绝从[websiteLink]应用样式,因为其MIME类型(&#39; text / html&#39;)不是受支持的样式表MIME类型,并且启用了严格的MIME检查。&#34;

0 个答案:

没有答案