모든 자식 엘리먼트 삭제
2021. 9. 5. 20:07
Frontend/HTML, CSS, DOM, jQuery
function deleteAll() { localStorage.removeItem('todos') while(todoList.childElementCount !== 0 ){ todoList.removeChild(todoList.firstChild) } } allDelete.onclick= deleteAll
DOM 연습 예제
2021. 8. 25. 21:06
Frontend/HTML, CSS, DOM, jQuery
이벤트 리스너 addeventlistener와 Onclick 이런것은 같음 class 2개 주고 싶으면 뛰어쓰기 하면 된다 주석된 코드가 toggle 함수 하나로 구현된다 classList.add와 remove로 응용하기
textinput 에 text 삭제하는 방법
2021. 7. 17. 14:44
Frontend/React & React.Native &Next.js
state = { v: "" }; _changeText = v => { this.setState({ v }); }; clear = () => { this.textInputRef.clear(); } render() { return ( this.textInputRef = ref} value={this.state.v} onChangeText={this._changeText} /> ); }
React Native)리액트 네이티브 자동 하이픈 기능 (핸드폰 번호)
2021. 7. 15. 14:05
Frontend/React & React.Native &Next.js
handlePhone = (event) => { let phNum = event.nativeEvent.text; if (phNum.length === 10) { this.setState({ phone: ${phNum.replace(/(\d{3})(\d{3})(\d{4})/, "$1-$2-$3")}, }); return; } if (phNum.length === 13) { this.setState({ phone: ${phNum .replace(/-/g, "") .replace(/(\d{3})(\d{4})(\d{4})/, "$1-$2-$3")}, }); return; } return this.setState({ phone: phNum }); }; 출처: https://velog.io/@seob/React-j..