Use ctrl + v to paste screenshots for upload

Source: Internet
Author: User
Today, I found that segmentfault's comment can be pasted and uploaded, So I studied how to implement it! The principle is very simple. In fact, it is to monitor and paste events, and then check whether there are images in the pasted items. If so, ajax is directly triggered to upload more technical articles. Please visit: www.dahuzhi.com code can be directly run, if you are interested, try it.

Today, I found that segmentfault's comment can be pasted and uploaded, So I studied how to implement it! The principle is very simple in fact is to monitor the paste event, and then check whether there is a picture in the paste, if there is a direct trigger ajax upload more technical articles please visit: http://www.dahuzhi.com code can be directly run, if you are interested, try it.

Today, I found that segmentfault's comment can be pasted and uploaded, So I studied how to implement it!
The principle is very simple. In fact, it is to monitor and paste events, and then check whether there are images in the pasted items. If so, ajax upload is directly triggered.

For more technical articles visit: http://www.dahuzhi.com

Code can be run directly. If you are interested, try PHP JavaScript Localisation.
 

Script // search for the box element to check the document. querySelector ('# box '). addEventListener ('paste ', function (e) {// determine whether the image is pasted if (e. clipboardData & e. clipboardData. items [0]. type. indexOf ('image')>-1) {var that = this, reader = new FileReader (); file = e. clipboardData. items [0]. getAsFile (); // ajax uploads an image reader. onload = function (e) {var xhr = new XMLHttpRequest (), fd = new FormData (); xhr. open ('post', '', true); xhr. onload = function () {var img = new Image (); img. src = xhr. responseText; // that. innerHTML = ''; document. getElementById ("img_puth "). value = img. src;} // this. result to get the base64 (which can be used for instant display) fd of the image. append ('file', this. result); that. innerHTML = ''; xhr. send (fd);} reader. readAsDataURL (file) ;}}, false); script

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.