2015-05-05 63 views
-2

是否有任何JavaScript日期選擇器允許我們選擇「昨天」,「明天」,「下週」等人類語言日期而不是實際日期?帶有像昨天,明天而不是日期的字符串的日期選擇器

事實上,任何客戶端庫會給我們這個功能將是有用的。

+1

我不知道日期選擇器庫,但你可以日期manipulatio檢查出[MomentJS(http://momentjs.com/) ñ。您可以自定義它根據自己的需要:) –

+0

http://stackoverflow.com/questions/19025330/get-tomorrows-date-with-jquery-and-compare 這可能是有用的.. –

+0

@Hayat,答案鏈接似乎已經死了。 – Arunster

回答

1

我能夠結合使用dateJsmoment.js到相當好聽達到這種效果(只針對英語作爲工作是,其他語言,你需要包括appropriate globalization file):

$('#smartdatepicker').blur(function() { 
 
    // parse date from string 
 
    var mydate = Date.parse($(this).val()); 
 
    // create a moment from that and format it however we want 
 
    var myMoment = moment(Date.parse($(this).val())).format('L') 
 
    // set converted value to input 
 
    $(this).val(myMoment); 
 
    
 
    
 
    // below does the above in one line 
 
    //$(this).val(moment(Date.parse($(this).val())).format('L')); 
 
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.js"></script> 
 
<script src="https://cdnjs.cloudflare.com/ajax/libs/datejs/1.0/date.min.js"></script> 
 
<input type="text" id="smartdatepicker" /> 
 
<br> 
 
<br>Type something into the box then click away from it 
 
<br> 
 
<br> 
 
<br>Examlples: 
 
<br> 
 
<br>Friday 
 
<br>Next Friday 
 
<br>Last Year 
 
<br>

+0

似乎是我在找的東西!謝謝! – Arunster

1

您可以使用DateJs。從文檔

摘錄:

解析下面的列表是隻有幾百 字符串格式,它可以正確解析不提供日期 格式的一小部分。所有解析都通過包含適當的 CultureInfo文件完全全球化。 CultureInfo文件包含用於解析和格式化的所有字符串 。

所有CultureInfo文件都可以在 /trunk/source/globalization/文件夾中找到。

以下.parse()示例使用en-US.js CultureInfo文件。

Date.parse('t')     // Returns today's date. 
Date.parse('today')    // Returns today's date. 
Date.parse('tomorrow')   // Returns tomorrow's date. 
Date.parse('yesterday')   // Returns yesterday's date. 

Date.parse('next friday')  // Returns the date of the next Friday. 
Date.parse('last monday')  // Returns the date of the previous Monday. 

Date.parse('July 8th, 2004') // Thu Jul 08 2004 
Date.parse('15-Jan-2004')  // Thu Jan 15 2004 

Date.parse('7/1/2004')   // Thu Jul 01 2004 
Date.parse('7.1.2004')   // Thu Jul 01 2004 
Date.parse('07.15.04')   // Thu Jul 15 2004 

Date.parse('July 23rd 2004') // Fri Jul 23 2004 
Date.parse('Sat July 3, 2004') // Sat Jul 03 2004 

Date.parse('10:30 PM EST')  // Wed Oct 31 2007 20:30:00 
Date.parse('10PM')    // Wed Oct 31 2007 22:00:00 

Date.parse('t + 5d')   // Adds 5 days to today. 
Date.parse('today - 1 month') // Subtracts 1 month from today. 

Date.parse('+')     // Add 1 day to today = tomorrow. 
Date.parse('- 3months')   // Subtract 3 months. 

Date.parse('+1year')   // Add a year to today. 
Date.parse('-12 months')  // Subtract 12 months (1 year) from today. 

Date.parse('July 4th')   // July 4th of this year. 
Date.parse('15')    // 15th day of current month/year. 

Date.parse('July 8th, 2004, 10:30 PM')  // Thu Jul 08 2004 22:30:00 
Date.parse('2004-07-15T06:45:00')   // Thu Jul 15 2004 06:45:00 
Date.parse('Thu, 1 July 2004 22:30:00 GMT') // Thu Jul 01 2004 16:30:00 

Date.parse('1997-07-16T19:20:15')   // ISO 8601 Formats 
Date.parse('1997-07-16T19:20:30+01:00')  // ISO 8601 with Timezone offset 
Date.parse('1985-04-12T23:20:50Z')   // RFC 3339 Formats 
相關問題