所以,我有自己的解决方案。
我将它实现到blueimp fileuploader中。
@Ray Nicholus,以防万一您需要任何帮助,请尝试在 FF 中粘贴图像:
插入内容可编辑的 div:
<div id="editable" style="position: absolute; left: -99999;" contenteditable></div>
在粘贴的情况下使用这个:
document.onpaste = function(event){
$('#editable').focus();
setTimeout(function()
{
//get the base64 image
var src = $('#editable').find('img:first').attr('src');
//doing something with the image... and clearing the div
$('#editable').empty();
}, 10);
编辑:当然你必须验证它是否是图像。
非常感谢您的努力。如果您的优秀上传者在线使用新功能,我会试一试;)我也希望会有更具体的演示,我可以在不下载示例的情况下试一试。
丹尼尔