일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mysql
- 알뜰폰
- 킹북이초월
- 라즈베리파이2
- ConoHa
- 보르비스초월
- KB국민카드
- proxmox
- 리눅스
- OpenWrt
- php
- SKT
- PHP-FPM
- 시놀로지
- 램가스초월
- 자바스크립트
- 윈도우10
- 티스토리
- jQuery
- 가상서버호스팅
- 알리익스프레스
- Rocky
- iptime
- 복현오거리
- 소비전력
- Apache
- centos
- 스톤에이지
- KB증권
- 아파치
- Today
- Total
목록JAVASCRIPT (75)
맛집 여행 캠핑 일상 생활
PHP 에서 배열의 값을 한번에 출력해주는 print_r 이나 var_dump 함수가 있습니다. www.php.net/manual/en/function.print-r.php www.php.net/manual/en/function.var-dump.php javascript 에서는 JSON.stingify 함수를 사용하시면 됩니다. developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
크롬, 웨일 브라우저에서는 로컬에서 직접열면 쿠키가 먹히지 않는군요~ 익스플로러와 파이어폭스는 되네요~ ㅎ function SetCookie(cKey, cValue, cExpires) { var date = new Date(); date.setDate(date.getDate() + cExpires); document.cookie = cKey + '=' + escape(cValue) + ';expires=' + date.toGMTString(); //document.cookie = cKey + '=' + encodeURIComponent(cValue) + ';expires=' + date.toGMTString(); } function GetCookie(cKey) { var allcookies = docum..
자바스크립트 쿠키 예제 샘플 코드입니다. escape encodeURIComponent 대체 가능 unescape decodeURIComponent 대체 가능 function SetCookie(cKey, cValue, cExpires) { var date = new Date(); date.setDate(date.getDate() + cExpires); document.cookie = cKey + '=' + escape(cValue) + ';expires=' + date.toGMTString(); } function DelCookie(cKey) { var date = new Date(); var validity = -1; date.setDate(date.getDate() + validity); docume..
PHP 같은 경우 $_SERVER['REMOTE_ADDR'] 로 클라이언트의 공인아이피를 알 수가 있습니다. 하지만 자바스크립트 자체적으로 알아낼 수가 없기에 외부에 프로그래밍된 것에 의존하여야 합니다. api.ipify.org 사이트와 같은 외부URL을 이용하는 방법과 자체적으로 서버를 구축하는 방법이 있습니다. 아래는 api.ipify.org 를 이용하는 방법입니다. 자체적으로 서버를 구축해서 이용할 수도 있습니다. PHP 소스 코드는 아래 처럼 작성하면 됩니다. 자체 서버를 구축한 다음에 구축한 서버의 url 을 호출하면 됩니다.
주소 부분에서 ? 가 나오면 그 뒤에는 파라메터 값입니다. 이 값은 PHP나 JSP 같은 서버프로그램에서는 익숙하게 사용하지만 클라이언트인 자바스크립트에서도 사용할 수가 있습니다. function parseQueryString() { var arrParams = {}; var uriParams = location.search.substr(1).split('&'); for (var i=0; i
[자바스크립트] RGBA 칼라 랜덤 뽑기 백그라운드 칼라를 RANDOM 함수를 사용해서 출력하는 예제입니다.var r1 = Math.floor(Math.random()*25) + 230;var r2 = Math.floor(Math.random()*5) + 200;var r3 = Math.floor(Math.random()*25) + 230;var dObj = document.createElement('div');dObj.style.left = '0px';dObj.style.top = '0px';dObj.style.width = '100px';dObj.style.height = '100px';dObj.style.position = 'fixed';dObj.innerHTML = 'test';dObj.style..
[자바스크립트] 하위 IFRAME 함수 호출 부모 html 에서 자식 iframe 안에 있는 javascript 함수를 호출하는 방법입니다. ▶ 자바스크립트 방식 document.getElementById('프레임id').contentWindow.함수명(); ▶ jQuery 방식 $('#프레임id').get(0).contentWindow.함수명(); 또는$('iframe').get(0).contentWindow.함수명(); 자식에서 부모 함수 호출은 top.document.함수명입니다.
iframe 안에서 position:fixed 가 안먹히는 문제 자식 iframe 안에서는 고정레이어 팝업창이 먹히지가 않습니다.아래처럼 top 부모에 div 를 append 하는 방법을 사용하면 됩니다.$(window).load(function(){createDivFixedTop('TopFixedLayer1');}); $(window).unload(function(){removeDivFixedTop('TopFixedLayer1');}); function createDivFixedTop(_id) { // 고정팝업 추가var obj = document.createElement('div');obj.style.left = 0;obj.style.bottom = 0;obj.style.width = '100px';..
[자바스크립트] 이벤트 좌표값 알아내기 ▶ 마우스 클릭시 이벤트 좌표값 알아내기$(document).ready(function(){$('body').click(function(e){console.log("e.clientX : " + e.clientX + ", e.clientY : " + e.clientY);console.log("e.offsetX : " + e.offsetX + ", e.offsetY : " + e.offsetY);console.log("e.pageX : " + e.pageX + ", e.pageY : " + e.pageY);console.log("e.screenX : " + e.screenX + ", e.screenY : " + e.screenY);});});다양하게 응용이 가능합니다.
[자바스크립트] 자식 iframe load 후 접근하기 자식에서 부모의 element를 접근할 때는 parent.$('#elementID') 이렇게 하면 됩니다. ▶ iframe load 이벤트var o_frame = document.getElementById('프레임ID');$(o_frame).load(function(){console.log('iframe onload');}); 부모에서 자식의 iframe 안에 있는 엘리먼트 접근은 아래 처럼 하면 됩니다.var o_frame = document.getElementById('프레임ID');$(o_frame).load(function(){var cFrame = this.contentDocument;$('#엘리먼트ID', cFrame).hide();con..