Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- websocket
- Spring
- JSP
- AWS
- SQL
- Cookie
- tiles.xml
- 웹게임
- HTML
- 암호화
- 배포
- Ajax
- 비트코인
- PL/SQL
- JavaScript
- CSS
- RDS
- Servlet
- node.js
- autowired
- express
- docker
- 웹소켓
- model1
- 블록체인
- 도커
- EC2
- phaser
- jQuery
- 알고리즘
Archives
- Today
- Total
목록자바스크립트 요일 (1)
記錄
JavaScript) 서버시각 추출 + 요일 뽑기
function serverToday(){ var xmlHttp; //분기하지 않으면 IE에서만 작동된다. if (window.XMLHttpRequest) { // IE 7.0 이상, 크롬, 파이어폭스일 경우 분기 xmlHttp = new XMLHttpRequest(); xmlHttp.open('HEAD',window.location.href.toString(),false); xmlHttp.setRequestHeader("Content-Type", "text/html"); xmlHttp.send(''); }else if (window.ActiveXObject) { xmlHttp = new ActiveXObject('Msxml2.XMLHTTP'); xmlHttp.open('HEAD',window.locat..
Computer language/Javascript
2018. 6. 14. 10:46