Programming 썸네일형 리스트형 서버시간 가져오기 // 서버 시간 가져오기var xmlHttp;function srvTime(){ try { //Firefox, opera 8.0+, Safari xmlHttp = new XMLHttpRequest(); } catch (err1) { //Internet Explorer try { xmlHttp = new ActiveXObject('Msxml2.XMLHTTP'); } catch (err2) { try { xmlHttp = new ActiveXObject('Microsoft.XMLHTP'); } catch (err3) { //AJAX not supported, use CPU time. alert("AJAX not supported"); } } } xmlHttp.open('HEAD',window.location.. 더보기 이전 1 ··· 26 27 28 29 30 31 32 ··· 69 다음