禁用右键单击没有警告框(Javascript)

时间:2016-05-21 21:11:18

标签: javascript html alertdialog right-click

我希望我的网站不可右键点击。我试过找出我是怎么发现的。但我不知道如何在没有警报框的情况下禁用它。当有人点击右键时,我不希望发生任何事情。我尝试从代码中删除警报,但这不起作用。我将衷心感谢您的帮助! :)

2 个答案:

答案 0 :(得分:1)

import {Component, Input, ViewContainerRef} from '@angular/core';

@Component({
    selector: 'my-input',
    template: `
        This is an input component!!!
    `
})
export class MyInputComponent {

    @Input() field: any;
    @Input() values: any;


    ngOnInit() {
        console.log(this);
    }

    constructor(public viewContainerRef: ViewContainerRef) {
    }

}

根据Structural pseudo-classes

回答

答案 1 :(得分:0)

如果您使用的是jQuery,则可以采用这种方法:

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

这应该有用。