Web ページの途中に表示するのではなくpace.js
、タグでページ読み込みの進行状況を表示する必要があります。td
私のHTML:
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pace/1.0.2/pace.js"/>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/pace/1.0.2/themes/green/pace-theme-center-circle.min.css">
</head>
<body>
<table border="1">
<tr>
<th>Channel</th>
<th>Health</th>
<th>Action</th>
</tr>
<tr>
<td>Mobile</td>
<td class="tdcolor">
<select >
<option value="0">Select</option>
<option value="1">Green</option>
<option value="2">Red</option>
<option value="3">Amber</option>
</select>
</td>
<td> <!--show progress bar here></td>
</tr>
</table>
</body>
</html>
pace.js
3番目のtd
セルを使用して進行状況を表示することは可能ですか? ペースを使用している理由は、nil 構成のためです。それが不可能な場合は、ajax/jquery について教えてください。
よろしくお願いします。