본문 바로가기
728x90
728x90

분류 전체보기150

[Javascript; 자바스크립트] 천 단위 쉼표 콤마 컴마 내장 함수 toLocaleString() let price = 100000; console.log(price.toLocaleString()); // 100,000 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString 2023. 6. 29.
#002. 전주 맛집 카페 TAKE A BREAD 2023. 1. 2.
[jQuery; 제이쿼리] input radio 값 설정 가져오기 - 체크된 radio value 가져오기 var radioValue = $(':radio[name="radioValue"]:checked').val(); - radio 버튼 체크 ( 설정 ) 하기 $('input:radio[name=radioValue]:input[value="Y"]').attr("checked", true); - id 로 radio 체크 ( 설정 ) 하기 $('#radio1').attr("checked", true); 2022. 12. 20.
[MySQL; 마이에스큐엘] CentOS7 MySQL 5.7 설치 및 GPG Keys 오류 yum install wget wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm sudo rpm -ivh mysql57-community-release-el7-11.noarch.rpm sudo yum install mysql-server 개발서버 CentOS7 에서 yum 으로 MySQL 5.7 을 설치하다 오류가 발생했습니다. 오류 내용은 GPG Keys 관련 오류 였습니다. 해결방법입니다. rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022 GPG-KEY-mysql-2022 를 import 한 후 다시 설치를 진행하면 됩니다. sudo yum install mysq.. 2022. 11. 8.
[Spring; 스프링] STS 3 ( Spring Tool Suite ) 이전 버전 다운로드 https://github.com/spring-attic/toolsuite-distribution/wiki/Spring-Tool-Suite-3 GitHub - spring-attic/toolsuite-distribution: the distribution build for the Spring Tool Suite and the Groovy/Grails Tool Suite the distribution build for the Spring Tool Suite and the Groovy/Grails Tool Suite - GitHub - spring-attic/toolsuite-distribution: the distribution build for the Spring Tool Suite and the Gro.. 2022. 11. 4.
[Git; 깃] GitHub CLI 인증 사용자 변경하기 ( Git Bash ) https://github.com/ GitHub: Let’s build from here GitHub is where over 83 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat... github.com 두 개 이상의 GitHub 계정을 사용할 때 CLI에서 계정을 바꾸는 방법입니다. 계정을 변경할 디렉터리에서 git bash 로 아래 명령어를 실행하면 됩니다. git config credentail.username "깃헙이메일" 2022. 11. 4.
728x90
728x90