我正在使用jQuery模板在我的网站上显示视频图块 。 问题是我希望始终显示华尔街网站上提供的最新视频。视频根据日期进行分组。
例如今天的视频:src="http://m.wsj.net/video/20120928/092812hubammarkets/092812hubammarkets_320k.mp4"
我想根据今天的日期动态更改src
。
你知道怎么做吗?
谢谢
答案 0 :(得分:0)
您可以将DateTime对象用于当前日期,然后将字符串中的年,月,日期放入需要去的字符串中(如果字符串的其余部分始终为常量)。
这样的事情:
DateTime testDate = DateTime.Now;
string year = testDate.Year.ToString();
string month = testDate.ToString("MM");
string date = testDate.Day.ToString();
string yearTwoDigit = testDate.ToString("yy");
string source = "src=\u0022http://m.wsj.net/video/"+year+month+date+"/"+month+yearTwoDigit+"hubammarkets/"+month+date+yearTwoDigit+"hubammarkets_320k.mp4\u0022";
\ u0022是"
字符
这是一个C#示例,它是您的标签之一。