본문 바로가기

분류 전체보기62

Visual Studio Code 테마 변경하기 vscode의 테마를 변경하는 방법입니다. 2021. 11. 25.
C# 자주쓰는 ToString 변환 자주쓰는 ToString 변환입니다. // 날짜포멧 DateTime date = DateTime.Now; Console.WriteLine($"DateFormat: {date.ToString("yyyy-MM-dd")}"); Console.WriteLine($"DateFormat: {date.ToString("yyyy-MM-dd HH:mm:ss")}"); // 통화 콤마찍기 int currency = 15000; Console.WriteLine($"통화콤마찍기: {currency.ToString("n0")}"); 결과 2021. 11. 25.
Visual Studio Code 로 .Net core 앱 콘솔 어플리케이션 만들기 Visual Studio Code로 앱 콘솔 어플리케이션 디버깅 환경구성을 해보겠습니다. 1. Visual Studio Code를 설치 https://code.visualstudio.com/Download Download Visual Studio Code - Mac, Linux, Windows Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications.. 2021. 11. 22.
jQuery data() vs attr() jQuery에는 data 함수와 attr 함수가 있다. 둘 다 해당 태그에 값을 넣는 건 같지만, 두가지를 혼합해서 쓰면 원하는 값이 나오지 않는다. 1. 조회 var key = 'itemid'; var dataValue = $(selector).data(key); // data 조회 var attrValue = $(selector).attr(key); // attr 조회 2. 삽입 var key = 'itemid'; var value = '1234'; $(selector).data(key, value); // data 삽입 $(selector).attr(key, value); // attr 삽입 3. 차이점 data() attr() 같은점 key value 형식이다. object형식으로 따로 받을 수 .. 2021. 11. 20.
반응형