這篇文章主要介紹了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>以上所述就是本文的全部內容了,希望大家能夠喜歡。