我要創建動畫HTML排名表與jQuery插件這裏找到:http://www.scottlogic.co.uk/2011/01/animating-html-ranking-tables-with-javascript/動畫效果HTML「排名」表與jQuery
我使用Visual Studio 2010中我創建了一個新的C#網站,節約了以下jQuery的文件在 「腳本/」:
- animator.js
- jQuery的1.4.3.js
- rankingTableUpdate.js
我的樣式表位於:「App_Themes /主題/樣式/ Site.css」
我正在使用Site.master的母版頁。我已經粘貼下面的代碼「的Default.aspx」:
<br />
<table border="1" cellpadding="2" cellspacing="2" width="40%">
<tr>
<th>Researcher</th>
<th>Close Ratio</th>
</tr>
<tr>
<td><strong>John</strong> Doe</td>
<td><strong>1</strong> in <strong>25</strong> CONV</td>
</tr>
<tr>
<td><strong>John</strong> Zert</td>
<td><strong>1</strong> in <strong>51</strong> CONV</td>
</tr>
<tr>
<td><strong>Johnny</strong> Halliday</td>
<td><strong>1</strong> in <strong>37</strong> CONV</td>
</tr>
<tr>
<td><strong>Johnathan</strong> Bell</td>
<td><strong>1</strong> in <strong>31</strong> CONV</td>
</table>
我想看看我怎麼這個表連接到JavaScript和讓它運行。
是否需要引用上表中的「更新」和「常量」列?如果是的話,我在哪裏可以找到資源來做到這一點?
請幫忙!
謝謝馬克,感謝您的幫助。你已經開發了一個偉大的插件!祝一切順利! – NewbieDev
標記如果您不介意我有關於您的插件的問題,即時通過php腳本獲取數據。現在我在AJAX的成功內部調用rankingTableUpdate,每更新10s(根據數據庫刪除和添加行)。我很好奇,何時應該進行分類以便動畫能夠正常工作。如果你有時間我會很感激,如果你能解釋我。謝謝 – LefterisL
排序與通過AJAX進行更新基本相同 - 您只需替換舊錶(新排序順序不同)。第一件事是創建一個按您想要的順序排序的表(可以在客戶端或服務器端完成,具體取決於它需要如何工作),然後調用傳遞它的更新函數。 –