问题描述
- 用uploadify3.2怎么读取上传的文件名到文本框
-
要去掉后缀名
'onSelect': function(e, queueID, fileObj) { $('#uploadify').uploadify('upload'); alert("文件名:" + fileObj.name + "rn" + "文件类型:" + fileObj.type ); },
<input class="form_title" id="title">
解决方案
下面的是uploadify上传完成后的赋值
'onComplete': function (event, queueId, fileObj, response, data) {
$("#title").val(fileObj.name);
}
时间: 2024-10-28 18:16:57