This is a javascript code that displays advertisements at a scheduled time. Of course, it can also display a certain block of content at a scheduled time, which is very practical.
The code is as follows:
function strToDate(str, ext) {
if (str == null || str == '') return;
var arys = new Array();
arys = str.split('-');
var newDate = new Date(arys[0], arys[1] - 1, arys[2], 9, 0, 0);
if (ext) {
newDate = new Date(newDate.getTime() 1000 * 60 * 60 * 24);
}
return newDate;
}
function showit(str, start, end) {
var date = new Date();
var start = strToDate(start);
var end = strToDate(end, false);
if (date & gt; start & amp; & amp; date document.write(str);
}
}
Retrieval:
showit('Your ads','2011-07-06','2011-07-18');