한자 js 스크립트만 입력 가능


  
  
  
  
  1. <html> 
  2. <head> 
  3. <meta http-equiv="Content-Type" content="text/html" /> 
  4. <title> js </title> 
  5. </head> 
  6.  
  7. <body> 
  8. :<INPUT   onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')">  
  9. <script> 
  10. function ischinese(s){  
  11. var ret=true;  
  12. for(var i=0;i<s.length;i++)  
  13. retret=ret && (s.charCodeAt(i)>=10000);  
  14. return ret;  
  15. }  
  16. </script> 
  17. </body> 
  18. </html> 

좋은 웹페이지 즐겨찾기