본문 바로가기
웹 개발 이야기/js, jquery

[JS] 한영키 누르지 않고 한글을 영어로 전환

by Gommin 2023. 3. 16.

* 기보드의 한영 전환 키와 상관 없이 영어만 입력된다. (반대의 경우는 라이브러리 사이트에서 확인할 수 있다.)
* inko 라이브러리 이용 (https://inko.js.org/)

 

<script src="https://cdn.jsdelivr.net/npm/inko@1.1.0/inko.min.js"></script>

<div class="form-group">
     <label class="input_label" for="de_code">코드</span></label>
     <input type="text" class="form-control" name="de_code" id="de_code" oninput="chg_eng(this)">
</div>

<script>
function chg_eng(e){
     const strval = e.value;
     const result = inko.ko2en(strval);
     e.value = result;
}
</script>

댓글