如何使用 jquery uploadify 插件将文件控制 ID 传递到服务器端。
$('#myFileControl').uploadify({
'swf': 'uploadify-v3.1/uploadify.swf',
'uploader': 'uplodify.ashx',
'buttonImage': 'uploadify-v3.1/choose.png',
'method': 'post',
'formData': { 'icontype': 'notSet','fileControlID':$(this).attr("id")},//pass id
'onUploadStart': function (file) {
$('#myFileControl').uploadify('settings', 'formData', { 'icontype': $("#icontype").val() });
},
'width': 129,
'height': 30,
'sizeLimit': 5120000,
'fileTypeExts': '*.jpg;*.png;*.gif',
'fileTypeDesc': 'Web Image Files (.JPG, .PNG, .GIF)',
'auto': false
});
<input type="file" name="myfile" id="myFileControl">
服务器端获取“fileControlID”值始终为空。