jquery.MultiFile 实现自动删掉上传列表

<p>作者:yan</p>
<p> </p>
<p> </p>
<p> </p>
<p>jquery.MultiFile 实现自动删掉上传列表:</p>
<p> </p>
<p><span style="font-family: monospace; font-size: x-small;"><span style="white-space: pre-wrap;"><textarea cols="50" rows="15" name="code" class="javascript">//post-submit callback
function showResponse(response, statusText)  {
    var strSuc=$(response).find("root&gt;success").first().text();
var strMsg=$(response).find("root&gt;msg").first().text();
if(strSuc=='true'){
$("#msg").html(strMsg);
                //删除上传文件列表
$("a.MultiFile-remove").each(function(i){
$(this).click();
});
}else{
$("#msg").html(strMsg);
                //删除上传文件列表
$("a.MultiFile-remove").each(function(i){
$(this).click();
});
}
}</textarea></span></span></p>
<p> </p>

你可能感兴趣的:(jquery)