Is oncontextmenu cross browser?

前端 未结 2 728
鱼传尺愫
鱼传尺愫 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.

提交回复
热议问题