要去掉後綴名
'onSelect': function(e, queueID, fileObj) {
$('#uploadify').uploadify('upload');
alert("文件名:" + fileObj.name + "\r\n" + "文件類型:" + fileObj.type );
},
<input class="form_title" id="title">
下面的是uploadify上傳完成後的賦值
'onComplete': function (event, queueId, fileObj, response, data) {
$("#title").val(fileObj.name);
}