判断粘贴快捷方式是否为'ctrl + v'或者'cmd + v'

What is the correct way to determine whether the paste short cut is 'ctrl + v' or 'cmd + v'

本文关键字:或者 cmd ctrl 是否 判断 快捷方式      更新时间:2023-09-26

我需要向用户展示粘贴需要使用键盘命令。但是,Mac上的粘贴命令与Windows上的不同,我需要能够检测到这一点。在JavaScript中正确的方法是什么而不必做操作系统检查(因为这可以伪造,因此为什么我们不再做浏览器检查)

你看过这个问题吗?如何通过JavaScript捕获Mac's命令键?

如果您检测到用户的window.navigator.platform,它将告诉您用户正在使用哪个平台。你可以在这里阅读如何使用它。

总的来说,你可以这样检测它:
var isMacLike = navigator.platform.match(/(Mac|iPhone|iPod|iPad)/i);
var isIOS = navigator.platform.match(/(iPhone|iPod|iPad)/i);
if(isMacLike || isIOS ){
  //MAC (remove isIos if you dont care about iphone/ipod/ipad)
}
else{ //other O.S.
  //close button on right side
}
相关文章: