본문 바로가기

IT 지식 ·프로그래밍5

jquery 탭 컨트롤 구현하기 (Feat. jquery UI) 웹페이지에서 탭컨트롤을 구현해야 할때가 있다. 직접 자바스크립트로 이벤트를 핸들러를 작성해서 하는 방법도 있겠지만. 잘만들어진 제이쿼리 모듈을 사용해보자~! 아래 사이트에 들어가면. 탭컨트롤뿐만 아니라 여러가지 모듈을 구경할 수 있다. https://jqueryui.com/ jQuery UI jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. Whether you're building highly interactive web applications or you just need to add a date picker t.. 2020. 12. 28.
그누보드 테이블 엑셀 다운로드 웹페이지에 그려진 table 태그를 엑셀로 다운로드하는 방법을 알아보자. 아래 코드는 샘플코드이다. 10줄 남짓의 자바스크립트 코드를 추가하면 된다. tableToExcel Demo Exporting the W3C Example Table CODE-PAGE SUPPORT IN MICROSOFT WINDOWSCode-Page IDNameACPOEMCPWindows NT 3.1Windows NT 3.51Windows 951200Unicode (BMP of ISO/IEC-10646)XX*1250Windows 3.1 Eastern EuropeanXXXX1251Windows 3.1 CyrillicXXXX1252Windows 3.1 US (ANSI)XXXX1253Windows 3.1 GreekXXXX1254Wind.. 2020. 12. 25.
리눅스 종류 확인하기 (Feat. 카페24 웹호스팅) 카페24 에서 단독웹호스팅을 받았다. 스케쥴링 작업을 위해 ssh 로 서버에 직접 접속했다. 리눅스 종류가 궁금해 다음과 같이 알아보았다. 위 그림과 같이 cat /proc/version 명령어를 통해 확인할 수 있다. 2020. 12. 22.
파이썬 flask 로 웹서버 구동하기. from flask import Flask app = Flask(__name__) @app.route('/') def home(): return "Hello, World!" app.run(port=5000) 2020. 12. 10.