本文介绍了如何将图像从剪贴板粘贴到网页中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,


就像我们需要从台式机或硬盘中的某个位置复制图像并将其粘贴到网页中一样.而不是单击浏览按钮并选择图像.

请提出

谢谢.

Hi All,


Requirement like we need to copy the image from desktop or somewhere in the hard disk and paste into the web page. instead of clicking browse button and select the image.

Please suggest

Thanks.

推荐答案


<script type="text/javascript" >
function DoCopy(imgsrc){
window.clipboardData.setData('URL',imgsrc);
//...
}
function DoPaste(targetimg){
var imgsrc = new String( window.clipboardData.getData('URL'));
targetimg.src = imgsrc;
//do your code
}
</script>
<img onpaste ="DoPaste(this.src);" />
<img oncut ="DoCut(this.src);" />




100:rose:;)




100 :rose: ;)



这篇关于如何将图像从剪贴板粘贴到网页中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 00:30