Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 rss 提要将数据拉入我的网站。一条数据是一个日期,其格式如下:2013 年 2 月 22 日
我需要使用正则表达式(或替代的 javascript 方法)从完整日期中提取当天(22)。知道我该怎么做吗?
var parsed = Date.parse("Feb 22 2013");//NaN if invalid var date = new Date(parsed); date.getDate() //==22
你可以这样做
var data= "Feb 22 2012"; var splitted = data.split(" "); alert(splitted[1]);
试试看
http://jsfiddle.net/fTSCu/
虽然不是最优雅的解决方案