私の Web ページには、日付の表があります (私の日付形式は dd-mm-yyyy です)
<tr>
<td>05-03-2012</td>
<td name="expiration">09-07-2012</td>
<td>08-10-2012</td>
<tr>
私が欲しいのは、Jqueryを使用して、値が>現在の日付の場合に赤色の有効期限を入れることです。
だから、私は次のようなものを使うつもりだと思う:
<script>
//don't know how to retrieve the expiration date and check if it is after the
//current date
$('td[name=expiration]').css({"color":"red"});
</script>