我想用一個使用追加功能的Javascript創建一個列表。用Javascript添加列表追加
我有一個index.php文件,script.js文件和一個search.php文件,使MySQL查詢。
我知道這一切工作,但佈局不是最好的。所以我想如何讓佈局更好。
我希望它顯示爲列表,這應該用CSS或表來完成?
現在,它只是顯示了這樣414622570992222
this.number = 70992222 this.code = 4146225
所以我希望它喜歡就好什麼是沒有這樣的寄宿生名單(不邊界)。
----------------------
| Number | Code |
----------------------
| 70992222 | 4146225 |
----------------------
以下是我的script.js文件中的一些代碼。
$.each(data.results, function(){
//Give the list element a rel with the data results ID incase we want to act on this later, like selecting from the list
$('#results-list').append("<li rel='" + this.number + "'>" + this.code + this.number + "</li>");
而且這是在我的index.php文件
<div id='results-holder'>
<ul id='results-list'>
我會用一個表,表格數據。 – ComFreek