[jQuery] .map() / 배열에서 특정값 꺼내서 배열만들기 https://phrygia.github.io/2023-01-23-array-to-object/ [javascript] 배열에서 특정값을 선택해서 객체로 변환하기 (배열을 객체로) 회사에서 개발하던 중 선택된 상품의 배열에서 각 상품의 와 를 추출해서 결제페이지로 넘겨주는 로직을 개발하고 있었다. *api 값 *api에서 추출하려는 값 우선 장바구니 상품들중 선택한 상품을 phrygia.github.io Front/JS & jQuery 2024.02.03
[jQuery][datePicker] .mask() / input으로 날짜 설정하기 https://codepen.io/deepakmahakale/pen/jvGEjv DatePicker with InputMask ... codepen.io $el.find(".inputDatepicker").mask('0000.00.00'); Front/JS & jQuery 2024.02.02
[jQuery][bootstrap] multiselect 선택 취소 / deselectAll .multiselect('deselectAll', false) 을붙이면 선택했던 옵션이 선택 취소된다. Front/JS & jQuery 2024.02.01
[js] hasOwnProperty https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty Object.prototype.hasOwnProperty() - JavaScript | MDN The hasOwnProperty() method of Object instances returns a boolean indicating whether this object has the specified property as its own property (as opposed to inheriting it). developer.mozilla.org hasOwnProperty()인스턴스 메서드는 이 Object개체가 지정된 속성을.. Front/JS & jQuery 2024.01.23
[HTML] 파일 다운로드 https://mine-it-record.tistory.com/445 [HTML] 태그로 가볍게 특정 파일 다운로드 받기 (ft. download attribute) - tag download Attribute - 태그를 통해 간단하게 파일 다운로드 하는 방법에 대해 알아보자. 태그에는 download 라는 속성이 존재하는데 이는 href에 지정된 파일을 다운로드해주는 기능이다. 이렇듯 복 mine-it-record.tistory.com 1. 파일 이름 그대로 다운로드 2. 지정한 다른이름으로 다운로드 Front/HTML 2024.01.14
[js] childNodes / children 차이 https://juni-official.tistory.com/137 [JS] 자바스크립트 childNodes / children 자바스크립트를 이용하여 HTML요소의 자식 노드와 요소에 접근하는 방법으로 우선 HTML 노드와 요소의 차이점에 대해서 알아야한다. 노드에는 3개, Text와 Element, Comment가 포함되어 있습니다. Text : juni-official.tistory.com Front/JS & jQuery 2024.01.04
[js] .checked https://www.w3schools.com/jsref/prop_checkbox_checked.asp HTML DOM Input Checkbox checked Property W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com .checked 로 체크된 상황 을 boolean 값으로 반환받는데 사용하거나 .checked = true; .checked = false; 로 체크.. Front/JS & jQuery 2024.01.03
[js] 숫자만 입력받기 정규식 https://gaemi606.tistory.com/entry/JS-%EC%9E%90%EC%A3%BC%EC%93%B0%EB%8A%94-%EC%A0%95%EA%B7%9C%EC%8B%9D-%EC%BD%A4%EB%A7%88%EC%B0%8D%EA%B8%B0-%EC%88%AB%EC%9E%90%EB%A7%8C-%EC%9E%85%EB%A0%A5%EB%B0%9B%EA%B8%B0-%EB%93%B1-%ED%95%A8%EC%88%98 JS | 자주쓰는 정규식 (콤마찍기, 숫자만 입력받기 등) / 함수 세 자리 콤마찍기 + 그냥 콤마 찍을 땐 toLocaleString()이 편하다 이건 input값 계속 변경되게하려고 사용 export const numberWithCommas = (num) => { return num.toS.. Front/JS & jQuery 2024.01.02
[js] Object.hasOwn() https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwn Object.hasOwn() - JavaScript | MDN The Object.hasOwn() static method returns true if the specified object has the indicated property as its own property. If the property is inherited, or does not exist, the method returns false. developer.mozilla.org Front/JS & jQuery 2023.12.31