附件上传提示删除成功但是附件依然存在

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/yyx3214/article/details/83246078

附件上传提示删除成功但是附件依然存在 2018年10月11日 13:58 无法删除附件jsp代码

<div id="attachment-content" style="width: 100%; margin: auto;"> <div class="attachment-menu"> <div class="title"> <h4>附件</h4> <div class="button-groups"> <button class="btn btn-positive upload-attchment" type="button">上传附件</button> </div> </div> <div class="container-attach" id="attachment"> <cpt:attachment uploadType="jQueryFileUpload" typeCode="0" btnWidth="100" btnText="上传附件" maxSize="100" extendBtnVariable="ExtendAttachmentButtons" allowType="doc,docx,wps,ofd" btnStyle="btn btn-primary" attachmentId="${entity.attachment}" inputId="attachment" inputName="attachment" loadSuccFun="loadSuccess" fileNameOnly="true" delSuccFun="delAttaSuccess" succFun="addAttaSuccess"> </cpt:attachment> </div> </div> </div>

可以删除附件jsp代码

 <div class="attachment-menu" style="margin:10px;"> <div class="title"> <h4>附件</h4> <div class="button-groups"> <button class="btn btn-positive upload-attchment" type="button">上传附件</button> </div> </div> <div class="container-attach" id="attachment"> <cpt:attachment uploadType="jQueryFileUpload" typeCode="0" btnWidth="100" btnText="上传附件" maxSize="100" maxNum="-1" extendBtnVariable="ExtendAttachmentButtons" allowType="doc,docx,wps,ofd,jpg,png" btnStyle="btn btn-primary" attachmentId="${entity.attachment}" inputId="attachment" inputName="attachment" loadSuccFun="loadSuccess" fileNameOnly="true" succFun="tuSetAttachment1(this)"> </cpt:attachment> </div> </div>

猜你喜欢

转载自blog.csdn.net/yyx3214/article/details/83246078