Sono nuovo di Jquery e sto cercando di utilizzare il plug-in Jquery Tablesorter e l'ho testato in un semplice file html come di seguito, ma non funziona. Tutto quello che ho visto nel browser è solo una tabella semplice senza ordinamento, nessuna intestazione cliccabile, non sembra quello che ho visto sulla home page di Jquery Tablesorter. Non so cosa c'è di sbagliato con il mio html. Ho inserito 2 file jQuery nella stessa cartella con questo file html. Si prega di avvisare!Jquery Tablesorter non funziona! Cosa c'è che non va?
<html>
<head>
<script type="text/javascript" src="jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="jquery.tablesorter.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("#myTable").tablesorter({sortList: [[0,0], [1,0]]});
}
);
</script>
</head>
<body>
<table id="myTable" class="tablesorter">
<thead>
<tr>
<th>Last Name</th>
<th>First Name</th>
<th>Email</th>
<th>Due</th>
<th>Web Site</th>
</tr>
</thead>
<tbody>
<tr>
<td>Smith</td>
<td>John</td>
<td>[email protected]</td>
<td>$50.00</td>
<td>http://www.jsmith.com</td>
</tr>
<tr>
<td>Bach</td>
<td>Frank</td>
<td>[email protected]</td>
<td>$50.00</td>
<td>http://www.frank.com</td>
</tr>
<tr>
<td>Doe</td>
<td>Jason</td>
<td>[email protected]</td>
<td>$100.00</td>
<td>http://www.jdoe.com</td>
</tr>
<tr>
<td>Conway</td>
<td>Tim</td>
<td>[email protected]</td>
<td>$50.00</td>
<td>http://www.timconway.com</td>
</tr>
</tbody>
</table>
</body>
</html>
Non c'è un file css da includere anche? – leppie
Vorrei anche controllare la console del tuo browser e assicurarmi che i file vengano caricati (per sicurezza) – bruchowski
@leppie Sì, ho incluso il tema predefinito css – TwentyLe