禁用iframe中的鼠标中键粘贴

时间:2015-10-21 07:52:13

标签: html iframe ckeditor

是否可以在iframe中禁用鼠标中键点击

<iframe id="ck_id"></iframe>

我已使用以下方法禁用了上下文菜单:

document.getElementById("ck_id").contentWindow.document.oncontextmenu = function(){alert("Disabled context menu"); return false;}; 

1 个答案:

答案 0 :(得分:0)

使用jquery&#39; mousedown&#39;:

  $(document).ready(function () {
        $("#ck_id").contents().find("body").on('mousedown', function (e) {
            if (e.which == 2) {
                e.preventDefault();
                //Do your work
            }
        });
    });