禁止右键

by jquery juq

JavaScript

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