일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 티스토리
- javascript
- 카카오헤어샵
- 하남맛집
- 술안주
- 동적쿼리
- 내장함수
- 파리바게트
- 재테크
- 토렌트
- 함수
- 맛집
- 국정화 반대
- 국정화
- 파리바게트 청라 SK점
- db
- Google Map
- 초대장
- 트래커
- 카카오가 찾아준 헤어샵
- MSsql
- 박근혜 탄핵
- 하남
- .net
- 신장사거리
- 최신트래커
- jquery
- C#
- 트레커
- Lock
- Today
- Total
목록개발/Javascript 16
featur
이 글은 4 Types of Memory Leaks in JavaScript and How to Get Rid Of Them를 번역한 글입니다. 번역 문서를 읽는 중, 오타나 어색한 문장이 있으면 부담없이 댓글 부탁드립니다. 이번 글에서 클라이언트단 JavaScript 코드의 일반적인 메모리 누수 유형에 대해 살펴보겠습니다. 또한 크롬 개발 도구(Chrome DevTools)를 사용하여 메모리 누수를 찾는 방법에 대해서도 알아보겠습니다. Introduction 메모리 누수(Memory leaks)는 모든 개발자들이 직면하는 문제입니다. 심지어 메모리를 관리해주는 프로그래밍 언어(Java, C# 등)를 사용하는 경우에도 메모리 누수 문제에서 벗어날 수 없습니다. 메모리 누수는 어플리케이션의 속도 저하, 충..
jquery , javascript 부모창 컨트롤 (opener, parent) jQuery 자식 팝업 창에서 부모창 함수 호출 $(opener.location).attr('href', 'javascript:eventCall();'); 자식창 -> 부모창으로 값 전달하기 opener.document.getElementById("id").value="전달할 값"; $("#id",opener.document).val("전달할 값");
[javascript] jQuery Selectors Use our jQuery Selector Tester to demonstrate the different selectors. Selector Example Selects * $("*") All elements #id $("#lastname") The element with id="lastname" .class $(".intro") All elements with class="intro" .class,.class $(".intro,.demo") All elements with the class "intro" or "demo" element $("p") All elements el1,el2,el3 $("h1,div,p") All , and element..
1. jQuery로 선택된 값 읽기 $("#selectBox option:selected").val();$("select[name=name]").val(); 2. jQuery로 선택된 내용 읽기 $("#selectBox option:selected").text(); 3. 선택된 위치 var index = $("#test option").index($("#test option:selected")); 4. Add options to the end of a select $("#selectBox").append("Apples");$("#selectBox").append("After Apples"); 5. Add options to the start of a select $("#selectBox").prepend..
[javascript] encodeURI 내장함수 텍스트 문자열을 유효한 URI(Uniform Resource Identifier)로 인코딩합니다. 필수 URIString 인수는 인코딩된 URI를 나타내는 값입니다.encodeURI 함수는 인코딩된 URI를 반환합니다. decodeURI에 결과를 전달하면 원래 문자열이 반환됩니다. encodeURI 함수는 ":", "/", ";", "?" 등의 문자를 인코딩하지 않으므로이 문자들을 인코딩하려면 encodeURIComponent를 사용합니다.다음 코드는 URI를 먼저 인코딩한 다음 디코딩합니다. var uriEncode = encodeURI ("http://www.Not a URL.com"); var uriDecode = decodeURIComponent(..
[javascript] encodeURIComponent 내장함수 encodeURIComponent 함수는 인코딩된 URI를 반환합니다. decodeURIComponent에 결과를 전달하면 원래 문자열이 반환됩니다. encodeURIComponent 함수는 모든 문자를 인코딩하기 때문에 문자열이 /folder1/folder2/default.html과 같은 경로를 나타날 때는 주의하세요.이 경우 슬래시 문자가 인코딩되므로 웹 서버에 요청을 전송할 때 유효하지 않게 됩니다. 문자열에 URI 구성 요소가 두 개 이상 들어 있으면 encodeURI 함수를 사용하세요. var uriEncode = encodeURIComponent ("www.Not a URL.com"); var uriDecode = decodeU..
javascript 문자열 길이 제한 함수 // 문자열 길이 제한function textLengthCheck(str, len) { var returnValue = ""; if (!len || len == "") {return str;} if (str.length > len) {returnValue = str.substring(0, len) + "...";}else {returnValue = str;} return returnValue;}