window.onload = function () {

            document.onmousedown = function () {

                //鼠标括右键2,鼠标左键1

                if (event.button == 2) {

                    alert('屏蔽鼠标的右键');

                }

            }

        }