首页 > 网站 > WEB开发 > 正文

js限制input标签中只能输入中文

2024-04-27 14:14:01
字体:
来源:转载
供稿:网友

js限制input标签中只能输入中文

<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>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表