It looks like you're new here. If you want to get involved, click one of these buttons!
$("#fileUpload").uploadify({
'auto' : false,
'multi' : false,
'uploadLimit' : 10,
'buttonText' : '选择文件',
'height' : 20,
'width' : 120,
'removeCompleted' : false,
'swf' : 'uploads/uploadify.swf',
'uploader' : 'uploads/1.php',
'fileTypeExts' : '*.doc; *.docx; *.pdf;',
'fileSizeLimit' : '20480KB',
'onUploadSuccess' : function(file, data, response) {
},
'onCancel' : function(file) {
alert('The file was cancelled!');
}
});