过时
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

UIEvent.isChar 只读特性返回 布尔 indicating whether the event produced a key character or not.

句法

var isChar = UIEvent.isChar;
					

A Boolean which is true if the event produces a character; otherwise false . Some keystroke combinations may raise events but not produce any character (example: ctrl - alt - ? ). When this is the case, isChar 返回 false . It is used when event handlers need to do something like echo the input on the screen.

范例

In this snippet, which is part of an event handler, the event is checked to see if it generates a character; if it does, the value of UIEvent.which is appended to a string which buffers the typed characters.

if (event.isChar) {
  characterBuffer += e.which;
}
					

规范

This property is not part of any specification.

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
isChar 弃用 非标 Chrome No Edge No Firefox ? — 55
不支持 ? — 55
isChar property has never been supported by any browser but Firefox, and even on Firefox it's never worked except on Mac OSX. For that reason, it's been removed in Firefox 55 to align with other browsers.
IE No Opera No Safari No WebView Android No Chrome Android No Firefox Android ? — 55
不支持 ? — 55
isChar property has never been supported by any browser but Firefox, and even on Firefox it's never worked except on Mac OSX. For that reason, it's been removed in Firefox 55 to align with other browsers.
Opera Android No Safari iOS No Samsung Internet Android No

图例

不支持

不支持

非标。预期跨浏览器支持较差。

非标。预期跨浏览器支持较差。

弃用。不要用于新网站。

弃用。不要用于新网站。

见实现注意事项。

另请参阅

元数据

  • 最后修改: