Vue 3 Composition API Vue 3 Composition API는 Vue.js 3에서 도입된 API 스타일로, Vue 컴포넌트의 로직을 보다 모듈화하고 구성 가능하게 해주는 프로그래밍 방식입니다. 이 API는 코드의 구성성을 높이고 가독성을 개선하여 개발자들에게 더 나은 개발 경험을 제공합니다. Composition API와 Options API의 주요 차이 Composition API와 Options API의 주요 차이점은 다음과 같습니다: 모듈화된 로직: Composition API는 컴포넌트의 로직을 여러 함수로 분리하고 조합할 수 있도록 해줍니다. 이로 인해 코드의 재사용성이 향상됩니다. 가독성: Composition API를 사용하면 코드가 더 직관적이며, 컴포넌트의 구조와 로직의..
Front - End
기본 문법 jQuery.trim(str) .trim() 메서드 사용 예시 참고자료 : https://api.jquery.com/jQuery.trim/ jQuery.trim() | jQuery API Documentation Description: Remove the whitespace from the beginning and end of a string. Note: This API has been deprecated in jQuery 3.5; please use the native String.prototype.trim method instead. Unlike jQuery.trim, String.prototype.trim does not work with types othe api.jquery.com
trim() 사용방법 주의 사항 : IE8 혹은 그 이하 자바 스크립트에서는 trim() 이 지원되지 않는다. jQuery 라이브러리를 사용하고 있다면 .. $.trim('str '); jQuery 라이브러리를 사용 하지 않는다면. .. 함수를 만들어서 사용하기 !! function trim(str) { return str.replace(/(^\s*)|(\s*$)/gi, ''); }
기본문법 .attr( attributeName ) .attr( attributeName ) 메서드 사용 예시 Check me 참고자료 : https://api.jquery.com/attr/ .attr() | jQuery API Documentation Description: Get the value of an attribute for the first element in the set of matched elements. The .attr() method gets the attribute value for only the first element in the matched set. To get the value for each element individually, use a looping constr ..