打开大写锁定的方法
onKeyPress(event: any) {
this.platform = getDevice();
if((event.shiftKey && this.platform === "mac" ) ||event.getModifierState('CapsLock')){
this.isCapsLock = true;
}else{
this.isCapsLock = false;
}
//event.getModifierState('CapsLock') 打开大写锁定的方法
}
打开大写锁定的方法最先出现在Python成神之路。
共有 0 条评论