在PHP中右键单击“禁用”

时间:2012-12-05 08:34:11

标签: javascript html browser

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

5 个答案:

答案 0 :(得分:8)

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

你可以使用jQuery实现它:

$(document).ready(function()
{ 
       $(document).bind("contextmenu",function(e){
              return false;
       }); 
})

答案 1 :(得分:1)

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

在Javascript中有可能:

<body oncontextmenu="return false;">

答案 2 :(得分:1)

不要那样做

无论您做什么,都无法阻止用户完全访问您网站上的所有数据。您编写的任何Javascript都可以通过简单地在浏览器上关闭Javascript(或使用像NoScript这样的插件)来实现。此外,没有办法禁止任何用户只为您的网站“查看来源”或“查看页面信息”(或使用wget)。

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

答案 3 :(得分: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>

//通过使用上面的代码,您可以禁用右键单击以及没有人可以复制您的页面内容

答案 4 :(得分: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>