1. 禁用网页右键
$(document).bind("contextmenu", function() { return false; });
2. 禁用页面双击选择和拖拽选择
$(document).bind("selectstart", function() { return false; });
转载于:https://www.cnblogs.com/linucos/archive/2011/09/08/2171923.html