공CD가 아닌데 디스크에 쓸 준비가 된 파일 목록이 나타날 때가 있다. 최악의 경우는 디스크에 쓸 준비가 된 파일 목록의 폴더명과 기존 CD의 폴더명이 중복되는 경우이다. 예를 들면 읽어들인 CD에 js 폴더가 있는데 디스크에 쓸 준비가 된 파일 목록에도 js 폴더가 있을 경우, 디스크에 쓸 준비가 된 파일 목록에서만 js 폴더가 보인다. 이래저래 복잡한 상황이다.결론:CD를 읽었는데 이전에 CD를 구울 때 작업했던 목록이 뜰 경우 CD 드라이브를 우클릭해서 임시 파일 제거 메뉴를 누르면 된다. 깔끔하게 디스크에 쓸 준비가 된 파일 목록만 지워진다.
${aMap.aAttr == 'A'}결과: "cannot convert M of type class java.lang.string to class java.lang.long ..."첫째 줄의 테스트 구문에서 위와 같은 에러가 발생했다. 디버깅했을 때 aAttr 값은 'A'였는데, 특이사항은 aAttr의 타입이 char 타입이었다. 검색해보니 char 타입인 경우 String 타입과 비교할 때 위와 같은 에러가 발생한다고 한다. 해결방법은 아래 코드로 변경해주는 것이다.${fn:contains(aMap.aAttr, 'A')}
출처: https://ourcodeworld.com/articles/read/140/top-5-best-code-syntax-highlighter-javascript-plugins개발블로그에서 가장 중요한 요소 중 하나가 문법강조(Code Highlight) 기능을 사용해서 코드를 올릴 수 있는가이다. 다음은 중요 기능이 있고, 사용하기 쉬우며, 테마를 고를 수 있는 문법강조 JS 플러그인들이며, VanillaJS 위에서 동작한다.1. Prism.js - http://prismjs.com/2. highlight.js - https://highlightjs.org/3. Rainbow - https://craig.is/making/rainbows4. SyntaxHighlighter - http://alexg..
쿠키제거 출처: https://stackoverflow.com/questions/10593013/delete-cookie-by-name function set_cookie(name, value) { document.cookie = name +'='+ value +'; Path=/;'; } function delete_cookie(name) { document.cookie = name +'=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;'; }
출처: https://stackoverflow.com/questions/18981909/how-to-show-a-running-progress-bar-while-page-is-loading페이지 로딩중 관련 JSNProgress http://ricostacruz.com/nprogress/ PACE http://github.hubspot.com/pace/docs/welcome/Onextrapixel http://onextrapixel.com/examples/youtube-like-ajax-loading-bar/index5.html
출처: https://stackoverflow.com/questions/6756104/get-size-of-json-objectJSON은 일반적인 JavaScript 개체와 달리 .length, .size 함수를 사용할 수 없다. 아래처럼 Object 객체를 이용해서 구한다. var myObject = {'name':'Kasun', 'address':'columbo', 'age':'29'} var count = Object.keys(myObject).length; console.log(count); // 출력: 3
시간이 지나면서 버전이 바뀌어 2019년 6월 11일 기준으로 글을 재정리했다. - https://devheedoo.github.io/posts/save-html-to-pdf/ 프로젝트에서 화면(html)을 PDF로 출력해야하는 경우가 생겼다. iText 라이브러리의 경우 html을 pdf로 변환해주지만 CSS 적용에 한계가 있어서(매우 제한적이다) 결국 이미지로 변환을 거쳐 PDF로 출력하는 방법을 선택했다. 사용한 라이브러리는 아래 3가지이다. (3.5.0) bluebird.js: 아래 라이브러리에서 사용하는 Promise 함수를 IE에서도 사용할 수 있게 해준다. http://bluebirdjs.com/docs/getting-started.html (0.5.0-beta3) html2canvas.js..
https://testmysite.withgoogle.com/intl/ko-kr
- Total
- Today
- Yesterday