Input is banned from keyboard and Chinese, but you can click _javascript Tips

Source: Internet
Author: User
Find a lot on the Internet, not practical, or compatibility issues, this can!
<input> prohibit keyboard and Chinese input, but can not use readonly and also need to be compatible with IE and FF, in order to complete this function cost a lot of Kung Fu, hehe, in this record for future use; also prohibit pasting onpaste= "return false"
Copy Code code as follows:

<! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 transitional//en" >
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script>
Style style= "ime-mode:disabled" Prohibit Chinese input
function Nopermitinput (e) {
var evt = window.event | | E
if (Isie ()) {
Evt.returnvalue=false; IE prohibits keyboard input
}else{
Evt.preventdefault (); Fire Fox prohibits keyboard input
}
}
function Isie () {
if (Window.navigator.userAgent.toLowerCase (). IndexOf ("MSIE") >= 1)
return true;
Else
return false;
}
</script>
</HEAD>
<BODY>
Disable keyboard key input and Chinese input
<input type= "text" value= "style=" ime-mode:disabled "onkeypress=" Nopermitinput (event) >
</BODY>
</HTML>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.