在我的网页中,我有一个日期表(我的日期格式是 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>