js 阻断网页选中和右键

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

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

你可能感兴趣的:(js 阻断网页选中和右键)