您拥有 jQuery 的方式是将内容附加到 '' 标签,而不是表格。
这就是添加每个项目时发生的情况,以及它的设置方式(我顺便添加了一个thead标签。一旦你开始为你的表格设计样式就会派上用场)
这是附加内容时的输出,以及为什么它的渲染错误。
<article id="listWarriors">
<h1>Warrior List</h1>
<table>
<thead>
<tr>
<th colspan="2">Warriors</th>
</tr>
<tr>
<td>Warrior Name</td>
<td>Warrior Type</td>
</tr>
</thead>
</table>
<tr>
<td>the wname</td>
<td>the wtype</td>
</tr>
</article>
话虽如此,将您的 jquery 修改为
$('#listWarriors table').append(data);
顺便说一句,您要附加多少项目。如果您将进行多个 ajax 调用并一次附加一个内容,我建议您通过 JSON 获取数据。让我知道,如果我能帮忙
正如评论中所讨论的,因为您想要获得多个项目 JSON 是要走的路。您可以通过这种方式使用 JSON 传递数据
** php (我确定您已经完成了查询,但这里以防万一) **
// Make a MySQL Connection
$query = "SELECT * FROM example";//Your query to get warriors from db
$result = mysql_query($query) or die(mysql_error());
$myWarriorsArray = array();//Where you will store your warriors
while($row = mysql_fetch_array($result)){
$myWarriorsArray[] = $row;
//This stores all keys for each iteration
/*//This is teh same as the following commented code
$myWarriorArray['warrior_name'] = row['warrior_name'];
$myWarriorArray['warrior_type'] = row['warrior_type'];
*/
}
echo json_encode($myWarriorsArray);//This will return a json object to your ajax call
Javascript
function getWarriors() {
$.ajax({
url: 'display_warrior.php',
dataType : 'json',
success: function(data) {
var toAppend = '';
alert(data);
//console.log(data);//Uncomment this to see the returned json data in browser console
for(var i=0;i<data.length;i++){//Loop through each warrior
var warrior = data[i];
toAppend += '<tr>';
toAppend += '<td>'+data[i]['warrior_name']+'</td>';
toAppend += '<td>'+data[i]['warrior_type']+'</td>';
toAppend += '</tr>';
}
$('#listWarriors table').append(toAppend);
}
});
}