फ़ाइलों को चिपकाने का तरीका

हैरी थेओडोलू
हैरी थियोडोलू

ब्राउज़र में फ़ाइलों को चिपकाने के लिए, HTMLElement के paste इवेंट का इस्तेमाल किया जाता है.

HTMLElement का paste इवेंट इस्तेमाल करके

सबसे पहले, आपको paste इवेंट के लिए अपनी पसंद के एलिमेंट में इवेंट लिसनर जोड़ना होता है. आम तौर पर, यह document लेवल पर होता है. इसलिए, किसी खास एलिमेंट पर फ़ोकस करने की ज़रूरत नहीं होती. इसके बाद, Clipboard API का इस्तेमाल किया जाता है, जो आपको HTMLElement के paste इवेंट के clipboardData फ़ील्ड का ऐक्सेस देता है. इसके लिए, files सूची में जाकर दोहराई जा सकती है. चिपकाई गई हर फ़ाइल के MIME टाइप के आधार पर, आपके पास यह तय करने का विकल्प होता है कि उसे स्क्रीन पर रेंडर करना है या नहीं, जैसे कि किसी इमेज या वीडियो में होता है या फ़ाइल के टेक्स्ट कॉन्टेंट को टेक्स्ट फ़ाइल के मामले में textarea एलिमेंट में चिपकाना है.

ब्राउज़र सहायता

  • 66
  • 79
  • 63
  • 13.1

सोर्स

document.addEventListener('paste', async (e) => {
  // Prevent the default behavior, so you can code your own logic.
  e.preventDefault();
  if (!e.clipboardData.files.length) {
    return;
  }
  // Iterate over all pasted files.
  Array.from(e.clipboardData.files).forEach(async (file) => {
    // Add more checks here for MIME types you're interested in,
    // such as `application/pdf`, `video/mp4`, etc.
    if (file.type.startsWith('image/')) {
      // For images, create an image and append it to the `body`.
      const img = document.createElement('img');
      const blob = URL.createObjectURL(file);
      img.src = blob;
      document.body.append(img);
    } else if (file.type.startsWith('text/')) {
      // For text files, read the contents and output it into a `textarea`.
      const textarea = document.createElement('textarea');
      textarea.value = await file.text();
      document.body.append(textarea);
    }
  });
});

इसके बारे में और पढ़ें

डेमो

एचटीएमएल

<!DOCTYPE html>
<html>
  <head>
    <title>How to paste files</title>
  </head>
  <body>
    <h1>How to paste files</h1>
    <p>Hit <kbd>⌘</kbd> + <kbd>v</kbd> (for macOS) or <kbd>ctrl</kbd> + <kbd>v</kbd>
      (for other operating systems) to paste image or text file(s) anywhere in this page.
    </p>
  </body>
</html>

CSS


        html {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
  color-scheme: dark light;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 1rem;
}

img {
  height: auto;
  max-width: 100%;
  display: block;
}
        

JS


        document.addEventListener('paste', async (e) => {
  // Prevent the default behavior, so you can code your own logic.
  e.preventDefault();
  if (!e.clipboardData.files.length) {
    return;
  }
  // Iterate over all pasted files.
  Array.from(e.clipboardData.files).forEach(async (file) => {
    // Add more checks here for MIME types you're interested in,
    // such as `application/pdf`, `video/mp4`, etc.
    if (file.type.startsWith('image/')) {
      // For images, create an image and append it to the `body`.
      const img = document.createElement('img');
      const blob = URL.createObjectURL(file);
      img.src = blob;
      document.body.append(img);
    } else if (file.type.startsWith('text/')) {
      // For text files, read the contents and output it into a `textarea`.
      const textarea = document.createElement('textarea');
      textarea.value = await file.text();
      document.body.append(textarea);
    }
  });
});