728x90
반응형
- 2024-04-06 : First posting.
e.data
가 undefined
로 반환됨. 왜 그런지는 모르겠음 ㅡ,.ㅡ;;; jQuery 도 함정이 좀 있구나. 참조: .
```[.linenums.lang-js]
$("#textarea-key-test").on("compositionstart compositionupdate compositionend input", (e) => {
$("#result").prepend(`e.data=${e.data} on e.type=${e.type}<br />`);
});
```/
바로 위 처럼 코드를 짜면 제대로 된 데이터가 안나옴.
## jQuery code 손수 수정.
```
ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" ")
```/
위 부분을 아래와 같이 고쳐봤음.
```
ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu compositionstart compositionupdate compositionend".split(" ")
```/
아래는 테스트 결과. Shift+F5
로 캐시를 지우고 새로고침 하시길... (그래도 안고쳐지네 =ㅂ=ㅋ 망했다.)
## RRA
728x90
반응형
'[IT/Programming] > HTML related' 카테고리의 다른 글
유튜브 리스트 (Youtube list) 로 퍼오는 법 (8) | 2024.09.23 |
---|---|
방향키 (위: ArrowUp, 아래: ArrowDown) 로 숫자 조정하기 (0) | 2024.09.17 |
jQuery.ripples - 이미지에 물결 그래픽 효과 주기 (3) | 2024.09.15 |
week1 위클리 페이퍼 (CSS 에 대해 설명 (position, display: flex and grid), 시맨틱 (Semantic) 태그를 사용하면 좋은 점) (4) | 2024.09.14 |
React Router 에서 CSS 충돌을 막고 좀 더 개발 친화적으로 CSS 를 다룰 수 있게 해주는 CSS module 을 배워봅시다. (Learning module.css) (6) | 2024.09.13 |
JAVA 에서 Selenium 이 제대로 동작 안할 때 해결법 (0) | 2024.09.10 |
React 를 배워보자. (Learning React) with TypeScript and esbuild bundling (6) | 2024.09.04 |