火狐 等浏览器 禁止 右键,文本选择功能

  $(document).bind("contextmenu", function () { return false; });
        $(document).bind("selectstart", function () { return false; });
        $(document).keydown(function () { return key(arguments[0]) }); 

<style>

body

{

-moz-user-select: none;

}

</style>

原文地址:https://www.cnblogs.com/hfliyi/p/2221146.html