我是新来的
图片> http://cl.ly/3g070L1i3n2U1K2g322I
如何在swfupload中成功上传后删除图片(每张图片)? 谁能给我一些例子?
我从本教程获得了上传代码 - > http://webdeveloperplus.com/jquery/multiple-file-upload-with-progress-bar-using-jquery/
答案 0 :(得分:0)
enter code here
考虑JQuery hide()。它不仅隐藏了,而且实际上删除了组件,这意味着如果你的东西位于相对模式下,例如,这个内容会向上移动。
在html中:
<button type="button" id="mybutton">Hello</button>
例如,就像放置你的JQuery一样。点击后按钮消失:
<script>
$(document).ready(function($){
$('#mybutton').click() { $('#mybutton').hide(); });
});
</script>
答案 1 :(得分:0)
试试这个
.bind('uploadSuccess', function(event, file, serverData){
var item=$('#log li#'+file.id);
item.find('div.progress').css('width', '100%');
item.find('span.progressvalue').text('100%');
var pathtofile='<a href="uploads/'+file.name+'" target="_blank" >view »</a>';
item.addClass('success').find('p.status').html('Done!!! | '+pathtofile);
item.remove();//to delete item from Q
})
这可能有助于你