/* * @descripttion: * @version: * @author: 闫旭 * @date: 2021-01-06 10:28:39 * @lasteditors: suerimn * @lastedittime: 2021-02-02 16:10:10 */ // document.oncontextmenu = new function("event.returnvalue=false"); // document.onselectstart = new function("event.returnvalue=false"); $(function () { $(document).bind("contextmenu copy selectstart", function () { return false; }); var img = $("img"); img.on("contextmenu", function () { return false; }); img.on("dragstart", function () { return false; }); });