我正在尝试在浏览器中访问粘贴事件并覆盖它。但是event.clipboardData是未定义的。目前我所拥有的是:

function handlePaste (event) {

    event.preventDefault();

    console.log("Handling paste");
    console.log(event.clipboardData);
}

编辑:

它是Angular中指令的一部分,我正在Chrome中运行它:
app.directive('safePaste', [function() {

function handlePaste (event) {

    event.preventDefault();

    console.log("Handling paste");
    console.log(event.clipboardData);
}

/*
 * Declaration
 */
var declaration = {};

declaration.restrict = 'A';

declaration.link = function(scope, element, attr) {
    // Attach the paste handler
    element.on('paste', handlePaste);

    // Register to remove the paste handler
    scope.$on('$destroy', function() {
        element.off('paste', handlePaste);
    });
};

return declaration;
}
]);

HTML:
<li ng-repeat="note in notes | reverse">
     <a id="note" href="#">
        <h2 id="note-title" data-note-id="{{ note.id }}" safe-paste> {{ note.title | limitTo : 16 }}</h2>
            <p id="note-content" data-note-id="{{ note.id }}" safe-paste> {{ note.text | limitTo : 200 }} </p>
            <p id="info-note-save" hidden="true" class="text-center">Press enter to save</p>
     </a>
</li>

最佳答案

我最近有一个类似的问题,我尝试拦截粘贴事件。我正在使用here中的代码:

function handlePaste (e) {
    var clipboardData, pastedData;

    // Get pasted data via clipboard API
    clipboardData = e.clipboardData || window.clipboardData;
    pastedData = clipboardData.getData('Text').toUpperCase();

    if(pastedData.indexOf('E')>-1) {
        //alert('found an E');
        e.stopPropagation();
        e.preventDefault();
    }
};

我改为将剪贴板数据行改为
clipboardData = event.clipboardData || window.clipboardData || event.originalEvent.clipboardData;

现在一切正常。

关于javascript - event.clipboardData未定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30257962/

10-11 12:24