DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> js限制input標簽中只能輸入中文
js限制input標簽中只能輸入中文
編輯:JavaScript綜合知識     

   這篇文章主要介紹了js限制input標簽中只能輸入中文的的相關資料,需要的朋友可以參考下

  方法很簡單,這裡就不多BB了,直接奉上示例

  ?

1 2 3 4 5 6 7 8 9 <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>只能輸入中文</title> </head> <body> <input type="text" id="text" onkeyup="value=value.replace(/[^u4E00-u9FA5]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^u4E00-u9FA5]/g,''))"> </body> </html>

  以上所述就是本文的全部內容了,希望大家能夠喜歡。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved