javascript oncontextmenu 是跨浏览器吗?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/7223143/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Is oncontextmenu cross browser?
提问by 0x499602D2
window.oncontextmenu = function() {
return false;
};
Will this work on all major browsers such that the right click will not be initiated?
这是否适用于所有主要浏览器,以便不会启动右键单击?
回答by Pekka
See this quirksmode pagefor a detailed compatibility table.
有关详细的兼容性表,请参阅此 quirksmode 页面。
回答by Dennis
QuirksModehas a comprehensive chart of support for the event. You can use it to decide if it meets your needs depending on browsers you support.
QuirksMode有一个全面的事件支持图表。您可以使用它来决定它是否满足您的需求,具体取决于您支持的浏览器。