Chinaunix首页 | 论坛 | 博客
  • 博客访问: 448151
  • 博文数量: 141
  • 博客积分: 211
  • 博客等级: 入伍新兵
  • 技术积分: 1049
  • 用 户 组: 普通用户
  • 注册时间: 2010-09-17 16:25
个人简介

如此经年,望尽千帆。

文章分类

全部博文(141)

文章存档

2014年(73)

2013年(65)

2012年(3)

我的朋友

分类: JavaScript

2014-05-01 08:22:01

分享下js实现的方法,个人感觉很不错。

方法一,使用css样式。

  1. <input type="text" style="ime-mode:disabled">
方法二:禁止粘贴,禁止拖拽,禁止中文输入。
可以说是最强的禁止中文输入的方法。

  1. <input type="text" onpaste="return false" ondragenter="return false" oncontextmenu="return false;" style="ime-mode:disabled"/>

您可能感兴趣的文章:

阅读(525) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~