-4

我正在使用一个使用 ppt 幻灯片和视频的应用程序。我想在所有浏览器中禁用右键单击,可以这样做吗?

4

5 回答 5

9

不,PHP 在服务器端,右键单击是客户端。

你可以通过使用 jQuery 来实现它:

$(document).ready(function()
{ 
       $(document).bind("contextmenu",function(e){
              return false;
       }); 
})
于 2012-12-05T08:35:17.543 回答
1
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
    $(this).bind("contextmenu", function(e) {
        e.preventDefault();
    });
}); 
</script>
<script type="text/JavaScript"> 
    function killCopy(e){ return false } 
    function reEnable(){ return true } 
    document.onselectstart=new Function ("return false"); 
    if (window.sidebar)
    { 
        document.onmousedown=killCopy; 
        document.onclick=reEnable; 
    } 
</script>

//通过使用上面的代码,您的右键将被禁用,并且没有人可以复制您的页面内容

于 2014-03-06T07:06:22.787 回答
1

右键单击是浏览器的一项功能。你不能通过 PHP 禁用它(PHP 生成 HTML)。

在 Javascript 中是可能的:

<body oncontextmenu="return false;">
于 2012-12-05T08:35:52.983 回答
1

不要那样做

无论您做什么,都无法阻止用户完全访问您网站上的每一点数据。只需关闭浏览器上的 Javascript(或使用 NoScript 之类的插件),您编写的任何 Javascript 都可以变得毫无意义。此外,没有办法禁止任何用户简单地为您的站点“查看源代码”或“查看页面信息”(或使用 wget)。

这不值得努力。它实际上不会起作用。它将使您的网站对用户充满敌意。他们会注意到这一点并停止访问。这样做没有任何好处,只会浪费精力和流量。

于 2012-12-05T08:50:10.247 回答
0

试试这个:
使用javascript禁用所有浏览器的右键单击。

<script language="javascript">
           var message="This function is not allowed here.";
           function clickIE4(){
                 if (event.button==2){
                     alert(message);
                     return false;
                 }
           }
           function clickNS4(e){
                if (document.layers||document.getElementById&&!document.all){
                        if (e.which==2||e.which==3){
                                  alert(message);
                                  return false;
                        }
                }
           }
           if (document.layers){
                 document.captureEvents(Event.MOUSEDOWN);
                 document.onmousedown=clickNS4;
           }
           else if (document.all&&!document.getElementById){
                 document.onmousedown=clickIE4;
           }
           document.oncontextmenu=new Function("alert(message);return false;")
</script>
于 2013-09-12T05:29:24.047 回答