使用JQuery查找日期

时间:2010-05-19 07:35:59

标签: jquery

如何使用jQuery获取给定日期的日期?在c#中我这样做

 if(MyDate.DayOfWeek == DayOfWeek.Sunday)

我如何在jQuery中执行此操作?

3 个答案:

答案 0 :(得分:3)

您可以使用JavaScript的Date.getDay()

  $(document).ready(function() {

    var d = new Date();

    alert(d.getDay());
  } );

如前所述,你不需要jQuery来使用它,但是我把它包装在jQuery中以供你使用。 如nc3b所述,结果为0,其中0为星期日。

答案 1 :(得分:2)

使用javascript,您可以找到星期几:Date.getDay(); 说你有这样的事情:

Date d = new Date(...);
d.getDay(); // returns day of week.

小心,因为它是从零开始的,所以它将从0返回到6。

答案 2 :(得分:0)

看起来我们需要为此构建一个数组。

var days = [
    'SUN', //Sunday starts at 0
    'MON',
    'TUE',
    'WED',
    'THU',
    'FRI',
    'SAT'
];

d = new Date(); //This returns Wed Apr 02 2014 17:28:55 GMT+0800 (Malay Peninsula Standard Time)
x = d.getDay(); //This returns a number, starting with 0 for Sunday

alert (days[x]);

工作fiddle