2017-08-31 92 views
-1

我有下面的html代碼,我已經包含了幾個js文件。只有jquery文件加載,而其他2個文件不加載。有人可以指出我哪裏出錯了。當我通過檢查元素檢查網絡選項卡時,發現其他js文件的請求根本沒有打中。 enter image description here爲什麼有些js文件不能在html中加載?

<html> 
<head> 
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.15/css/jquery.dataTables.min.css"> 
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/2.1.1/css/responsive.dataTables.min.css"> 

<style> 
div.container { max-width: 1200px } 
</style> 

</head> 
<body> 

<table id="example" class="display compact nowrap" cellspacing="0" width="100%"> 
     <thead> 
      <tr> 
       <th>First name</th> 
       <th>Last name</th> 
       <th>Position</th> 
       <th>Office</th> 
       <th>Age</th> 
       <th>Start date</th> 
       <th>Salary</th> 
       <th>Extn.</th> 
       <th>E-mail</th> 
      </tr> 
     </thead> 
     <tbody> 
      <tr> 
       <td>Tiger</td> 
       <td>Nixon</td> 
       <td>System Architect</td> 
       <td>Edinburgh</td> 
       <td>61</td> 
       <td>2011/04/25</td> 
       <td>$320,800</td> 
       <td>5421</td> 
       <td>[email protected]</td> 
      </tr> 

      <tr> 
       <td>Rhona</td> 
       <td>Davidson</td> 
       <td>Integration Specialist</td> 
       <td>Tokyo</td> 
       <td>55</td> 
       <td>2010/10/14</td> 
       <td>$327,900</td> 
       <td>6200</td> 
       <td>[email protected]</td> 
      </tr> 
      <tr> 
       <td>Colleen</td> 
       <td>Hurst</td> 
       <td>Javascript Developer</td> 
       <td>San Francisco</td> 
       <td>39</td> 
       <td>2009/09/15</td> 
       <td>$205,500</td> 
       <td>2360</td> 
       <td>[email protected]</td> 
      </tr> 
     </tbody> 
    </table> 


</body> 
<script src="https://code.jquery.com/jquery-1.12.4.js"/> 
<script src="https://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"/> 
<script src="https://cdn.datatables.net/responsive/2.1.1/js/dataTables.responsive.min.js"/> 
<script> 
$(document).ready(function() { 
    var table = $('#example').DataTable({ 
     responsive: true 
    }); 
}); 
</script> 
</html> 

回答

4

<script>不是自閉標籤。請嘗試以下操作:

<script src="https://code.jquery.com/jquery-1.12.4.js"></script> 
<script src="https://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script> 
<script src="https://cdn.datatables.net/responsive/2.1.1/js/dataTables.responsive.min.js"></script> 
+2

僅僅因爲現代瀏覽器可以很好地處理它們,並不意味着您應該使用不良行爲進行編碼。它最終會爬上你。 –

3

<script>標籤可能有一些問題與自閉的形式。試試這個:

<script src="https://code.jquery.com/jquery-1.12.4.js"></script> 
<script src="https://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script> 
<script src="https://cdn.datatables.net/responsive/2.1.1/js/dataTables.responsive.min.js"></script> 
相關問題