목록Programming/[Javascript] (108)
른록노트
저는 Color Scripter 쓰는데 위에 크래용 신텍스 하이라이터도 좋은것 같습니다. Color Scripter Crayon syntax highlighter 참고사이트https://colorscripter.com/https://ko.wordpress.org/plugins/crayon-syntax-highlighter/
$(this).find("option[value='" + $(this).val() + "']").text()); 참고사이트http://blog.freezner.com/archives/1803
$.ajax() 사용방법비동기 요청 시 사용하는 $.ajax() 1234567891011121314$.ajax({ url: 'example.php' // 요청 할 주소 async: true, // false 일 경우 동기 요청으로 변경 type: 'POST' // GET, PUT data: { Name: 'ajax', Age: '10' }, // 전송할 데이터 dataType: 'text', // xml, json, script, html beforeSend: function(jqXHR) {}, // 서버 요청 전 호출 되는 함수 return false; 일 경우 요청 중단 success: function(jqXHR) {}, // 요청 완료 시 error: function(jqXHR) {}, // 요청 ..
SlickGrid란?javascript기반으로 간단하게 grid/spreadsheet를 사용할 수 있게 해주는 플러그인이다. 공식사이트 : https://github.com/mleibman/SlickGrid SlickGrid is an advanced JavaScript grid/spreadsheet componentSome highlights:Adaptive virtual scrolling (handle hundreds of thousands of rows with extreme responsiveness)Extremely fast rendering speedSupports jQuery UI ThemesBackground post-rendering for richer cellsConfigurable &..