Disabling right click context menu on a HTML Canvas?

前端 未结 6 1806
醉梦人生
醉梦人生 2021-02-05 00:45

Making a painting app using HTML5 and Canvas.

I think I want to have a similar system to applications like Paint and Photoshop where you can have a primary and secondary

6条回答
  •  不要未来只要你来
    2021-02-05 01:18

    This should do the job with more modern (and readable) syntax than the other answers.

    const canvas = document.getElementById('myCanvas');
    canvas.oncontextmenu = () => false;
    

提交回复
热议问题