-2

我想在 document.body.oncopy 上执行一个函数,但是有一个特定的类(定义为 div 元素),我不想在其上调用这个函数。

有没有办法做到这一点?

4

1 回答 1

1

正如我在评论中所说,您可以执行以下操作:

document.body.addEventListener('copy', function (e) {
    if (e.target.className === 'specific') {
        return;
    }
    // Continue with all permitted elements
}
于 2013-02-18T10:43:03.877 回答