일반 JavaScript 팁 모음
바탕화면용: Niagara 나이아가라
일반 JavaScript
JavaScript 팁 모음
Click and Drag multi-selection rectangle with Javascript
http://nightlycoding.com/index.php/2014/02/click-and-drag-multi-selection-rectangle-with-javascript/
https://code.google.com/archive/p/gwtquery-plugins/
2016년과 이후 JavaScript의 동향
http://d2.naver.com/helloworld/3618177
js 파일에 js 파일 인클루드하는 효과내기
http://l2j.co.kr/1483 이다.
music player의 data 를 file화 해서 js파일에 집어넣고 main에서는 깔끔하게 처리하려했는데,
일단 되긴되는데, 캐쉬문제인지, 동적으로 txt를 과하게만들어서 문제인지
노래파일이 10~20개 될때, 문제생긴다. 나중에 노래갯수 적게할때는 유용할듯,
현재 main html에 전체올리는것도 나중에 한계가 생길수있다.그때적용하던지생각하는것도방법이다.
나머지 방법도 이것저것 시도했는데 거의 도저히안된다.
다른 유력한방법2는
var fileref=document.createElement('script');
fileref.setAttribute("type","text/javascript");
fileref.setAttribute("src", "http://scmplayer.net/script.js");
fileref.setAttribute("data-config", 데이타 );
if (typeof fileref!="undefined") {
document.body.appendChild(fileref);
로써, main에서 일단 js file로 넘기는 parameter를 dynamic하게 처리하는것인데,
parameter없는경우는 다른 샘플만들어보면잘되는데, 인자있으면 인자문제인지, 아니면 뮤직플레이어문제인지 일단안됨;;ㅠㅠ
JS로 HTML내에서 URL제거
//g는 모든문자 다 치환
//URLs starting with http://, https://, or ftp://
//replacePattern1 = /(\b(https?|ftp):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/gim; //original
//replacePattern1 =
/(\b(https?|ftp):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/gi;
//works good enough!
// URL제거
//input_doc = input_doc.replace(replacePattern1, '');
How to replace plain URLs with links?
http://stackoverflow.com/questions/37684/how-to-replace-plain-urls-with-links
http://blog.kjslab.com/16 이건안됨
몇십개 검색해도 다들 완벽하지않은데 이게 성공~!
http://stackoverflow.com/questions/37684/how-to-replace-plain-urls-with-links
'IT > IT 일반' 카테고리의 다른 글
C# vs JAVA - 3/5* (0) | 2016.12.19 |
---|---|
C# vs JAVA - 2/5* (0) | 2016.12.19 |
C# vs JAVA - 1/5 (0) | 2016.12.19 |
ERP 도입시 단점 (0) | 2016.11.23 |
캐나다 인터넷 속도 크게 빨라졌지만, (0) | 2016.11.22 |
ERP 도입시 장단점 (0) | 2016.11.17 |
IT 컨설턴트 (0) | 2016.11.16 |
프로그래밍 문제 연습 - 2 (0) | 2016.10.18 |
프로그래밍 문제 연습 (0) | 2016.10.18 |
자바로 웹 구현 (0) | 2016.10.02 |