한글만 되게 하는 자바스크립트 입니다.

· 10년 전 · 310

<SCRIPT LANGUAGE="JavaScript">    
function enforceHanGul() {  
if(window.event.type == "propertychange" ){  
if ( window.event.propertyName == "value" ) {   
 var pattern = /[^(ㄱ-힣)]/g;   
 if(pattern.test(window.event.srcElement.value)){  
var v = window.event.srcElement.value.replace(pattern, "");  
window.event.srcElement.value = window.event.srcElement.value.replace(pattern, "");  
}  
}  
}  
}   
</SCRIPT>  
<input style="ime-mode:active" onfocus="this.style.imeMode='active'" onkeydown="this.focus()" onpropertychange='enforceHanGul()'>

|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
10년 전 조회 309
10년 전 조회 355
10년 전 조회 282
10년 전 조회 346
10년 전 조회 280
10년 전 조회 381
10년 전 조회 300
10년 전 조회 316
10년 전 조회 257
10년 전 조회 339
10년 전 조회 301
10년 전 조회 307
10년 전 조회 311
10년 전 조회 327
10년 전 조회 328
10년 전 조회 803
10년 전 조회 284
10년 전 조회 306
10년 전 조회 209
10년 전 조회 754
10년 전 조회 350
10년 전 조회 331
10년 전 조회 395
10년 전 조회 400
10년 전 조회 431