일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 자바스크립트
- PHP-FPM
- 윈도우10
- 킹북이초월
- KB증권
- ConoHa
- proxmox
- KB국민카드
- OpenWrt
- 스톤에이지
- 보르비스초월
- centos
- 가상서버호스팅
- mysql
- 아파치
- SKT
- 알뜰폰
- 복현오거리
- 알리익스프레스
- 티스토리
- 램가스초월
- 시놀로지
- 라즈베리파이2
- Apache
- 소비전력
- 리눅스
- php
- Rocky
- iptime
- jQuery
- Today
- Total
목록자바스크립트 (11)
맛집 여행 캠핑 일상 생활
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나 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.함수명입니다.
[자바스크립트] 이벤트 좌표값 알아내기 ▶ 마우스 클릭시 이벤트 좌표값 알아내기$(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..
자바스크립트 form 생성해서 실행하기 HTML 로 FORM 이 없더라도 javascript 로 생성하여 본문에 추가가 가능합니다.var f = document.createElement('form');var input = document.createElement('input');input.setAttribute("type", "hidden");input.setAttribute("name", "input1");input.setAttribute("value", "value1");f.appendChild(input);document.body.appendChild(f);f.method = 'post';f.action = 'test.php';f.target = '_blank';f.submit(); 응용 하면 여러..
자바스크립트, jQuery 로 헤더에 메타 태그 추가하는 방법 최상위 부모프레임에도 적용가능 하다. 1. jQuery 로 추가하기$('head').append(''); 2. 자바스크립트로 추가하기var meta = document.createElement('meta');meta.httpEquiv = "pragma";meta.content = "no-cache";document.getElementsByTagName('head')[0].appendChild(meta); 다른 예제var meta = document.createElement('meta');meta.name = "keywords";meta.content = "keyword1, keyword2, keyword3";document.getElement..