ここにあるjQueryプラグインを使用してアニメーションHTMLランキングテーブルを作成したい:http ://www.scottlogic.co.uk/2011/01/animating-html-ranking-tables-with-javascript/
Visual Studio 2010を使用しています。新しいC#Webサイトを作成し、次のjQueryファイルを「Scripts/」に保存しました。
- animator.js
- jquery-1.4.3.js
- ランキングテーブルアップデート.js
私のスタイルシートはここにあります: "App_Themes / Main Theme / Styles / 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に接続して実行するにはどうすればよいかを知りたいです。
上記の表の「更新」列と「定数」列を参照する必要がありますか?はいの場合、それを行うためのリソースはどこにありますか?
助けてください!