oncontextmenu 是跨浏览器吗?
window.oncontextmenu = function() {
return false;
};
这是否适用于所有主要浏览器,从而无法启动右键单击?
window.oncontextmenu = function() {
return false;
};
Will this work on all major browsers such that the right click will not be initiated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有关详细的兼容性表,请参阅此 quirksmode 页面。
See this quirksmode page for a detailed compatibility table.
QuirksMode 拥有对该事件的支持的全面图表。您可以根据您支持的浏览器来决定它是否满足您的需求。
QuirksMode has a comprehensive chart of support for the event. You can use it to decide if it meets your needs depending on browsers you support.