Story 썸네일형 리스트형 jQuery Number Plugin Basic number formatting The number method takes up to four parameters, but only the first one is required. 1.Number: The number you want to format. $.number( 5020.2364 ); // Outputs 5,020 2.Decimal Places: The number of decimal places you wish to see. Defaults to 0. $.number( 5020.2364, 2 ); // Outputs: 5,020.24 3.Decimal Separator: The character(s) to use as a decimal separator. Defaults to '.'.. 더보기 javascript 줄바꿈 처리 nl2br javascript 를 사용하다가 줄바꿈에 대한처리가 필요할때가 있다. php 의 nl2br 과 같은 함수의 기능이 필요할때는 다음과같이 사용할수있다. String.prototype.nl2br = function() { return this.replace(/\n/g, " "); } 또는 jQuery.nl2br = function(varTest){ return varTest.replace(/(\r\n|\n\r|\r|\n)/g, " "); }; 출처 http://stackoverflow.com/questions/2919337/jquery-convert-line-breaks-to-br-nl2br-equivalent 더보기 jQuery Selectbox plugin 출처 : http://www.bulgaria-web-developers.com/projects/javascript/selectbox/ 소스 : 더보기 Alipay의 최신 Error Code 系统错误码 名称 标识 说明 文案(新) 文案(英文) 文案(旧) SYSTEM_EXCEPTION 1000 未知的系统异常 网络系统异常,请稍后再试.(sys_1000) This transaction failed because network system was busy.Please try again later.(sys_1000) 网络系统异常,请稍后再试.(1000) INVALID_PARAMETER 1001 非法参数,主要为入参检查,不符合预期目标 网络系统异常,请稍后再试.(sys_1001) This transaction failed because network system was busy.Please try again later.(sys_1001) 网络系统异常,请稍后再试.(1001) INVALID_INST 1002 非法机构.. 더보기 Windows Vista에서 원격 데스크톱 연결 기능을 사용하는 방법 Windows Vista에서 원격 데스크톱 연결 기능을 사용하는 방법 http://support.microsoft.com/kb/950142/ko 참고로 포트가 막혔을 경우에는 제어판 -> Windows 방화벽 -> 설정 변경 -> (Tab 메뉴) 예외 -> 포트 추가 이름은 원하는 대로, 포트번호는 3389, 프로토콜은 TCP 후 확인을 누른다. 더보기 반응형 또는 모바일 페이지에 이미지맵(image map) 사용하기 이미지맵을 사용하여 홈페이지를 제작하는대 반응형으로 coding 하는경우 문제가 생깁니다. 원하는 영역의 크기가 변하기때문이죠. 이럴때 jquery 를 이용해서 해결 할 수 있습니다. jQuery RWD Image Maps Allows image maps to be used in a responsive design by recalculating the area coordinates to match the actual image size on load and window.resize Usage:•If possible, add correct, unitless width and height attributes to your image map images. You can override these in CSS .. 더보기 Interpreter 방식의 javascript 또는 php 등에서 ++$i and $i++ 차이점 간단히 설명하면 ++$i is pre-increment whilst $i++ post-increment. - pre-increment: increment variable i first and then de-reference. 값이 먼저 증가 - post-increment: de-reference and then increment i. 값이 나중에 증가 ++$i //first increment $i then run line $i++ //first run line then increment $i 예문을 들면 더보기 asp file download 파일이 존재하는지 여부를 먼저 체크해야함.Dim objFSO Set objFSO = Server.CreateObject("Scripting.FileSystemObject") If objFSO.FileExists ("yourfile.txt") Then Response.Write "File exists" Else Response.Write "File does not exist" End If http://www.plus2net.com/asp-tutorial/file-exist.php 여기에 있는내용을 기록해 두겠다. Determining the existence of file or directory by using FileSystemObject in ASPWe can check whether file of f.. 더보기 Cross Domain XML using JQuery 크로스도메인에서 jquey 로 xml 사용하기 jquery 로 xml rss 등을 파싱해서 사용하는건 많이 있지만 외부사이트에 xml 이나 rss 사용시 문제가 발생한다. 이 문제에 대해 검색하던 중 좋은 자료가 있어 남겨놓는다. http://www.isgoodstuff.com/2012/07/22/cross-domain-xml-using-jquery/ “How do you parse a cross domain xml, using jquery ajax?” Many would have answered try “jsonp”, which is a json like cross domain solution then, later you tried it and the xml returned is giving you an error of illegal token. .. 더보기 웹 취약점 점검을 무료로 받을 수 있는곳 무료로 웹 취약점 점검을 받을수있다. 다음 KISA 인터넷침해대응센터에서 회원가입 후 이용할수있다. http://www.krcert.or.kr/kor/webprotect/webprotect_01.jsp 비교적 상세한 보고서를 작성해서 보내주며 대응에 관해서도 알려준다. 이곳을 이용해서 취약점을 점검하고 대비하면 좋을거 같다. 더보기 이전 1 ··· 4 5 6 7 8 9 10 ··· 33 다음