Skip to content
Discussion options

You must be logged in to vote

根据容器 id 自行禁止拖拽事件如:

document.getElementById('editor-text-area').addEventListener(
  'drop',
  (e) => {
    e.preventDefault();
    e.stopPropagation();
  },
  { capture: true }
);
document.getElementById('editor-text-area').addEventListener(
  'dragover',
  (e) => {
    e.preventDefault();
    e.stopPropagation();
  },
  { capture: true }
);

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@liuchuzhang
Comment options

Answer selected by cycleccc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
enhancement New feature or request
3 participants
Converted from issue

This discussion was converted from issue #227 on October 29, 2024 07:27.