Is oncontextmenu cross browser?

前端 未结 2 693
鱼传尺愫
鱼传尺愫 2021-02-19 19:30
window.oncontextmenu = function() {
    return false;
};

Will this work on all major browsers such that the right click will not be initiated?

相关标签:
2条回答
  • 2021-02-19 20:24

    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.

    0 讨论(0)
  • 2021-02-19 20:29

    See this quirksmode page for a detailed compatibility table.

    0 讨论(0)
提交回复
热议问题