Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

event.isChar

警告: 不要使用该属性,该属性有一个已知的bug,就是它始终返回false,从不返回true.查看https://bugzilla.mozilla.org/show_bug.cgi?id=312552

概述

返回一个布尔值,表明该事件是否是由一个字符按键触发的.

语法

bool = event.isChar 

例子

 if(e.isChar){
   echoInput(e.type);
 }

备注

一些常用的组合键可能会触发键盘事件,但是不会产生任何字符(例如:CTRL + ALT + ?).在这种情况下,isChar返回false.isChar常用于判断用户在一个文本输入框内输入的是否为一个字符.

规范

不属于任何公开的规范

文档标签和贡献者

 此页面的贡献者: ziyunfei, teoli, jsx
 最后编辑者: jsx,