반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코로나19
- jQuery
- 덩크 로우
- GIT
- Github
- 발매예정
- 주식공부
- dunklow
- 주식
- stockx.com
- react
- 덩크 하이
- Nike
- 제이쿼리
- Python
- Dunk Low
- 덩크로우
- 리눅스
- dunk high
- 오라클
- 나이키
- Linux
- draw
- sacai
- 파이썬
- JavaScript
- oracle
- 드로우
- 자바스크립트
- 리액트
Archives
- Today
- Total
Life goes slowly...
[Javascript] 자바스크립트(JS) - input 창에 focus 이동후 text 선택하기 본문
728x90
반응형
웹페이지에서 Popup창을 열고 input Text 창에 웹페이지 URL을 작성한 뒤에 복사하기 쉽도록 URL 전체를 선택하도록 하는 경우가 있습니다. 이는 제일 먼저 Popup창을 열게 하고 나서 input 창에 focus를 이동하도록 한 뒤에 선택하도록 하면 됩니다.
<!-- 팝업 start -->
<div class="common_popup" id="contentPopup">
<p>Ctrl + C로 아래의 URL을 복사.</p>
//Foucs 이동후에 onfocus="this.select()" input창 text 선택
<input type="text" onfocus="this.select()" id="ctrlUrl" value="http://www.naver.com">
<div>
<button class="pop_exit">닫기</button>
</div>
</div>
<!-- 팝업 end -->
<script>
//Popup창 함수
function openModal(){
$('#contentPopup').css('display','block');
$("#ctrlUrl").focus(); //input창에 Focus 이동
}
</script>
제이쿼리(Jquery)의 포커스 강제이동 함수는 focus()입니다.
728x90
반응형
'프로그래밍 > Javascript' 카테고리의 다른 글
[Javascript] 자바스크립트(JS) - input 텍스트에 숫자만 입력 (0) | 2021.06.18 |
---|---|
[jQuery] jQuery(제이쿼리) Table의 Drag and Drop - tablednd() (0) | 2021.06.17 |
[jQuery] jQuery(제이쿼리) style 속성 추가 - .css() 함수 (0) | 2021.06.15 |
[Javascript] 자바스크립트(JS) - 문자열 Byte 체크하기 (0) | 2021.06.09 |
[Javascript] 자바스크립트(JS) - formdata를 console.log로 볼수없는이유 (0) | 2021.05.26 |
[Javascript] 자바스크립트(JS)의 배열을 합치는 함수 - Join() (0) | 2021.05.24 |
[Javascript] 자바스크립트(JS) Image 파일 용량 체크 (0) | 2021.05.18 |
[Javascript] Uncaught TypeError: Illegal invocation 해결방법 (0) | 2021.05.17 |
Comments