Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- const 단언문
- JS console
- React Native
- click and drag
- returnType
- utilty type
- TSDoc
- 반복줄이기
- javascript
- 누구나 자료구조와 알고리즘
- 레이아웃쪼개기
- 티스토리꾸미기
- React.js
- 리액트
- 2022
- 성능최적화
- typescript
- reactjs
- NonNullable
- 폰트적용하기
- CSS
- Chart.js
- react
- 공통컴포넌트
- 타입스크립트
- 커스텀
- 개발콘텐츠
- vue.js
- 제네릭
- 타입좁히기
Archives
- Today
- Total
몽땅뚝딱 개발자
[Javascript] queryCommandSupported() - ❌ 본문
◽ queryCommandSupported()
해당 브라우저에서 command 지원여부를 알 수 있는 API이다.
but,, 더 이상 사용되지 않는다. (Deprecated)
isSupported = document.queryCommandSupported(command);
◽ 예제
if (document.queryCommandSupported("cut")) {
console.log("지원함");
} else {
console.log("지원안함");
}
출처
Document.queryCommandSupported() - Web APIs | MDN
The Document.queryCommandSupported() method reports whether or not the specified editor command is supported by the browser.
developer.mozilla.org
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'Development > Javascript' 카테고리의 다른 글
[JavaScript] 천단위 출력하기 / .toLocaleString() (0) | 2022.01.19 |
---|---|
[Javascript] navigator.userAgent() (0) | 2022.01.10 |
[Javascript] window.scrollTo(x-좌표, y-좌표) (0) | 2021.12.27 |
[Javascript] window.pageYOffset (0) | 2021.12.27 |
[Javascript] getBoundingClientRect() (0) | 2021.12.27 |
Comments