这是一个类似的问题:Mysql PHP generated table: doesn't work with Tablesorter
但是,有一个细微的区别:我直接在同一个文件中生成表,而不是外部文件,因此.load
不是一种选择。
我的代码:
<html>
<head>
<title>Tablesorter testing page</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.tablesorter.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#races").tablesorter();
});
</script>
</head>
<body>
<?php
$db = new mysqli("localhost", "user", "password", "database");
$query = "SELECT name, date FROM races";
$result = $db->query($query, MYSQLI_STORE_RESULT);
$o = '<table id="races"><thead><tr><th>Name</th><th>Date</th></tr></thead><tbody>';
while(list($name, $date) = $result->fetch_row()) {
$o .= '<tr><td>'.$name.'</td><td>'.$date.'</td></tr>';
}
$o .= '</tbody></table>';
echo $o;
?>
</body>
</html>
问题是表格没有格式化,好像在空表上调用了Tablesorter?如果我对 html 表进行硬编码,Tablesorter 就可以正常工作。
那么,我该如何让它工作呢?
编辑:下面是生成的 .html 代码
<html>
<head>
<title>Tablesorter testing page</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.tablesorter.js" type="text/javascript"></script>
<script>
$(document).ready(function() {
$("#races").tablesorter();
});
</script>
</head>
<body>
<table id="races">
<thead><tr><th>Name</th><th>Date</th></tr></thead>
<tbody><tr><td>Race 1</td><td>2012-01-01</td></tr><tr><td>Race 2</td><td>2012-01-01</td></tr></tbody></table>
</body>
</html>