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 |
Tags
- JavaScript
- RDS
- 암호화
- SQL
- model1
- AWS
- autowired
- HTML
- websocket
- 블록체인
- tiles.xml
- EC2
- express
- jQuery
- 비트코인
- Ajax
- 도커
- 배포
- phaser
- Spring
- 웹소켓
- 알고리즘
- node.js
- JSP
- CSS
- Servlet
- docker
- 웹게임
- PL/SQL
- Cookie
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