var xmlHttp;
function srvTime(){
if (window.XMLHttpRequest) {//분기하지 않으면 IE에서만 작동된다.
xmlHttp = new XMLHttpRequest(); // IE 7.0 이상, 크롬, 파이어폭스 등
xmlHttp.open('HEAD',window.location.href.toString(),false);
xmlHttp.setRequestHeader("Content-Type", "text/html");
xmlHttp.send('');
return xmlHttp.getResponseHeader("Date");
}else if (window.ActiveXObject) {
xmlHttp = new ActiveXObject('Msxml2.XMLHTTP');
xmlHttp.open('HEAD',window.location.href.toString(),false);
xmlHttp.setRequestHeader("Content-Type", "text/html");
xmlHttp.send('');
return xmlHttp.getResponseHeader("Date");
}
}
var st = srvTime();
var date = new Date(st);
var today = date.getFullYear() + addZero(date.getMonth()+1) + addZero(date.getDate());
function addZero(n){
return n < 10 ? "0" + n : n;
}
JSP와 자바스크립트간의 정보 전송방법 (0) | 2013.04.24 |
---|---|
a 태그 onclick(int 형 메서드) 값이 변형될 때에는.. (0) | 2013.04.12 |