js 阻断网页选中和右键

$(document).bind("contextmenu", function () {
            return false;
        });

        $(document).bind("selectstart", function () {
            return false;
        });

原文地址:https://www.cnblogs.com/clnchanpin/p/7019685.html