• ベストアンサー

RSSの日付を和暦にしたい

お世話になっています。 http://samurai614.blog29.fc2.com/blog-entry-26.html このサイトを見て、JsでRSSをページ内に埋め込むことはできました。 この投稿日時を和暦表記に変えたいのですが、そういったことは可能なのでしょうか? ご存知の方、ご教示お願い致します。

質問者が選んだベストアンサー

  • ベストアンサー
回答No.1

ふぁいあ~ふぉっくすならうごくとおもふ。 setTimeout (  (function (replaceTimeStamp) {   return function () {    Array.prototype.forEach.call (     document.getElementsByClassName ('rss-date'),     replaceTimeStamp);   };  })(   function (tNode) {    var d = new Date (tNode.textContent);    tNode.textContent = [     '平成', d.getFullYear ()-1988, '年',     d.getMonth () + 1, '月',     d.getDate (), '日 ',     d.getHours (), '時',     d.getMinutes (), '分'    ].join ('');   })  ,  2000);

関連するQ&A