在我的網頁,我有日期的表(我的日期格式爲DD-MM-YYYY)如何使用jquery根據日期條件更改css?
<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>
我可以幫你,但我需要知道,如果你的約會甲永遠是MM-DD-YYYY – 2012-07-09 01:24:35
好,謝謝!我的日期格式將始終爲dd-mm-yyyy,實際上我使用{{object.dateExpiration |日期(d-m-Y)}}來顯示此日期。 – Reveclair 2012-07-09 12:52:24