attachmentSimple删除在点击删除按钮时能删除服务器上的文件
整理代码来自论坛:http://bbs.wex5.com/forum.php?mod=viewthread&tid=105114 UI2/system/components/juetsp/attachment目录下的attachmentSimple.js文件进行修改,找到deleteFile 这个方法 然后修改成如下代码 deleteFile:function(storeFileName,ownerID){ if(typeof storeFileName === "object"){ var $object = storeFileName; storeFileName = $object.storeFileName.get(); ownerID = this.getOwnerID($object); } this.removeItemByStoreID(storeFileName,ownerID); var url = this.actionUrl + '?storeFileName=' + storeFileName + '&ownerID=' + ownerID + '&operateType=delete'; url [...]