如何使用 jquery 或 ajax 将图像(仅限图像 url)拖到可放置区域以上传到服务器?
我想通过图像网址将图像上传到服务器。 该图像被拖放到可放置区域。 (或者有没有办法将图像 URL 发布到 javascript 函数中的另一个页面?)
如何在可放置区域中使用此图像,使用 jquery 或 ajax 上传到服务器。
就像一旦我放下图像,它就会使用图像 URL 自动上传到服务器(例如 http://dfghg. com/sss.jpg)。
图像(例如 http://dfghg.com/sss.jpg)与以下内容位于同一页面内放置区域。
这是我的代码
$("#query_image_container").droppable({
accept: ".thumb",
activeClass: "ui-state-highlight",
drop: function( event, ui ) {
$(this).find(".thumb").remove();
$(this).append('<img class="thumb" src="'+ui.draggable.attr('src')+'">');
var imageurl = ui.draggable.attr('src');
$.ajax({
type: 'POST',
url: 'uploadurl.php',
data: imageurl,
success:function()
{
}
datatype: 'html'
});
}
});
我可以使用 $.ajax({...});在可投放的范围内?
或者有没有其他方法可以使用“data : imageurl”对 uploadurl.php 进行 POST?
这个想法是将图像(同一网页上的图像)拖到放置区域,它将自动上传到服务器。
I want to upload an image to server through an image url.
this image is dragged and dropped to a droppable area. (Or is there a way to post the Image URL to another page in the javascript function?)
How do I use this image in the droppable area to upload to the server using jquery or ajax.
Like once I dropped the image then it will automatically upload to the server by using the image url(e.g http://dfghg.com/sss.jpg).
the image (e.g http://dfghg.com/sss.jpg) is within the the same page as the drop area.
heres my code
$("#query_image_container").droppable({
accept: ".thumb",
activeClass: "ui-state-highlight",
drop: function( event, ui ) {
$(this).find(".thumb").remove();
$(this).append('<img class="thumb" src="'+ui.draggable.attr('src')+'">');
var imageurl = ui.draggable.attr('src');
$.ajax({
type: 'POST',
url: 'uploadurl.php',
data: imageurl,
success:function()
{
}
datatype: 'html'
});
}
});
can I use $.ajax({...}); within a droppable?
Or is there any other way i can do a POST to uploadurl.php with the "data : imageurl" ?
the idea is to drag an image(image on the same webpage) to the drop area and it will auto upload to the server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能不愿意深入研究 fileuploadarea,这似乎正在做您想要的事情。
You might wont to dig deeper into fileuploadarea, this seems to be doing pretty much what you want.