我正在使用jQuery手機網站的簡單表格。這是我的頁面html,Jquery Mobile的表格沒有響應?
<div data-role="page" id="mainPage">
<div data-role="content">
<table data-role="table" id="my-table" data-mode="reflow">
<thead>
<tr>
<th>Rank</th>
<th>Movie Title</th>
<th>Year</th>
<th>
<abbr title="Rotten Tomato Rating">Rating</abbr></th>
<th>Reviews</th>
</tr>
</thead>
<tbody>
<tr>
<th>1</th>
<td><a href="foo.com" data-rel="external">Citizen Kane</a></td>
<td>1941</td>
<td>100%</td>
<td>74</td>
</tr>
</tbody>
</table>
</div>
</div>
但我的頁面看起來像非常醜陋。似乎沒有jQuery在這裏應用。 這裏是屏幕截圖,
您是否添加了所需的鏈接到您的頁面(腳本,樣式等)? – ronen
是的,肯定是因爲其他控件正在工作 – user960567
可以截圖嗎? –