Jump to content
  • 0

Преобразование строк в дату


walek
 Share

Question

Друзья!

Корректна ли функция? Судя по всему, что она не преобразовает строку в дату - нет.

  function convertDate(strData){
var NewData = "";
if (strData[0].text=="")
return NewData;
var Day = strData[0].text.substr(0);
var converted = Date.parse(Day);
var myDate = new Date(converted);
return Day;
}

Вызываю ее следующим образом convertDate(pubDate).

pubDate имеет 04.02.2008 17:29

Где ошибка?

Спасибо!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Хорошо. Нужна Ваша помощь!

Друзья, вот таким образом корректно вызывать функцию и вообще она корректна?

function convertDate(strData)
{
var pubDateTxt = strData[0].text.substr(0);
pubDateTxt = pubDateTxt
.replace(/./g, '/')
.replace(/^(d+/)(d+/)/, function($0, $1, $2)
{
return $2 + $1;
});
var pubDateObj = new Date(pubDateTxt);
var now = new Date();
if (now - pubDateObj > 60 * 60 * 24 * 1000)
{
var txt = 'NEW!';
return txt;
}
}

Вызываю так, convertDate(pubDate)

pubDate это дата из узла 20.2.2008 17:25, который вытаскивается strData[0].text.substr(0). Вместо strData[0].text.substr(0); можно подставить просто дату '20.2.2008 17:25';

Спасибо!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy