Hallo benutze ich einen Index, der ein tägliches produziert, Wochenzeitung und Monatskalender. Ich laufe in formating Ausgaben. Das gegenwärtige Format druckt das Everyting in 24 Stunden-mal,…, das ich es benötige, in 12 Stunde wie h zu drucken: I ein Format. Ich bin wie zu unsicher. Unter sind die Funktionen, die die Zeit produzieren. „, tmt,“ im Allgemeinen benötige ich diese Variable zum Liter-2:00 P.M. anstelle vom 14:00.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
6:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
|
////////////DISPLAY DIE ZEIT
für (var I = 0; I < 24; i++) {
tmt = fomartTimeShow (i);
ht.push („“, tmt, „ ");
}
ht.push („ | ");
//////////NOT SURE DIE TEIL DIESER FUNKTION, DIE SIE BENÖTIGEN
Funktion fomartTimeShow (h) {
Rückhol h < 10? „0“ + h +“: 00 ": h + „: 00“;
}
Funktion getymformat (Datum, comparedate, isshowtime, isshowweek, showcompare) {
var showyear = isshowtime! = undefined? (date.getFullYear ()! = neues Datum () .getFullYear ()) : zutreffend;
var showmonth = richten aus;
showday var = richten aus;
var showtime = isshowtime || falsch;
var showweek = isshowweek || falsch;
wenn (comparedate) {
showyear = comparedate.getFullYear ()! = date.getFullYear ();
//showmonth = comparedate.getFullYear ()! = date.getFullYear () || date.getMonth ()! = comparedate.getMonth ();
wenn (comparedate.getFullYear () == date.getFullYear () &&
date.getMonth () == comparedate.getMonth () &&
date.getDate () == comparedate.getDate ()
) {
showyear = showmonth = showday = showweek = falsch;
}
}
var a = [];
wenn (showyear) {
a.push (i18n.xgcalendar.dateformat.fulldayshow)
} sonst, wenn (showmonth) {
a.push (i18n.xgcalendar.dateformat. Md3)
} sonst, wenn (showday) {
a.push (i18n.xgcalendar.dateformat.day);
}
a.push (showweek? „(W)“: "", showtime? „HH: Millimeter“: "");
Rückhola.join ("");
}
Funktion CalDateShow (startday, endday, isshowtime, isshowweek) {
wenn (! endday) {
RückholdateFormat.call (startday, getymformat (startday, ungültig, isshowtime));
} sonst {
var strstart= dateFormat.call (startday, getymformat (startday, ungültig, isshowtime, isshowweek));
var strend=dateFormat.call (endday, getymformat (endday, startday, isshowtime, isshowweek));
var verbinden = (strend! = ""? „-“: "");
[strstart, strend] .join zurückbringen (verbinden);
}
}
Funktion dochange () {
var d = getRdate ();
var geladen = checkInEr (d.start, d.end);
wenn (! geladen) {
bevölkern ();
}
}
Funktion checkInEr (Anfang, Ende) {
var ll = option.loadDateR.length;
wenn (ll == 0) {
Rückholfalsches;
}
var r = falsch;
var r2 = falsch;
für (var I = 0; I < ll; i++) {
r = falsch, r2 = falsch;
var-Dr. = option.loadDateR [i];
wenn (Anfangs>= dr.startdate && Anfangs<= dr.enddate) {
r = richten aus;
}
wenn (dateFormat.call (Anfang, „yyyyMMdd“) == dateFormat.call (dr.startdate, „yyyyMMdd“) || dateFormat.call (Anfang, „yyyyMMdd“) == dateFormat.call (dr.enddate, „yyyyMMdd“)) {
r = richten aus;
}
wenn (! Ende)
{r2 = richten aus; }
sonst {
wenn (Ende >= dr.startdate && Ende <= dr.enddate) {
r2 = richten aus;
}
wenn (dateFormat.call (Ende, „yyyyMMdd“) == dateFormat.call (dr.startdate, „yyyyMMdd“) || dateFormat.call (Ende, „yyyyMMdd“) == dateFormat.call (dr.enddate, „yyyyMMdd“)) {
r2 = richten aus;
}
}
wenn (r && r2) {
Bruch;
}
}
Rückholr && r2;
}
Funktion buildtempdayevent (SH, bestimmen Inspektion, wie, EM, h, Titel, w, thindex) {die Größe neu
var Thema = thindex! = undefined && thindex >= 0? tc (thindex): tc ();
var newtemp = TP (__SCOLLEVENTTEMP, {
bdcolor: Thema [0],
bgcolor2: Thema [0],
bgcolor1: Thema [2],
Daten: "",
starttime: [pZero (SH), pZero (Inspektion)].join („: "),
endtime: [pZero (wie), pZero (EM)].join („: "),
Inhalt: Titel? Titel: i18n.xgcalendar.new_event,
Titel: Titel? Titel: i18n.xgcalendar.new_event,
Ikone: „ “,
Oberseite: „0px“,
links: "",
Breite: w? w: „100%“,
Höhe: h - 4,
I: „- 1“,
Gegenkraft: „Schleppenspan“,
Wiederauslage: die Größe neu bestimmen? „Block“: „keine“
});
Rückholnewtemp;
|