jQuery禁止右键菜单,全选

$("body").bind("contextmenu", function()

{

return false;

});

$("body").bind("selectstart", function()

{

return false;

});