jQuery Uploadify中的动态scriptData

时间:2010-02-20 18:07:40

标签: javascript jquery uploadify

我对javascript和jQuery很新。我正在使用Uploadify将图像上传到服务器。页面上有多个Uploader对象。我需要将正在使用的Uploader对象的id传递给服务器。这就是我到目前为止所做的:

$('input.ImageUpload').uploadify({
    ...
    'scriptData': {'id': ??????},
    ...
});

我怎样才能实现这一目标?我试过“this.id”和“$(this).attr('id')”。我是否正确地以正确的方式解决这个问题?

2 个答案:

答案 0 :(得分:2)

我不确定这是否理想,但这就是我最终做的事情:

$('input.ImageUpload').each(function() {
  $(this).uploadify({
    ...
    scriptData({'id': $(this).attr('id')},
    ...
  });
});

答案 1 :(得分:1)

这就是我成功使用它的方法:

$(document).ready(function() {
    $(".upload").each(function() {
        $(this).uploadify({
            'uploader'      : '/code/js/jquery.uploadify/example/scripts/uploadify.swf',
            'script'        : '/code/js/jquery.uploadify/example/scripts/uploadify.php',
            'cancelImg'     : '/code/js/jquery.uploadify/example/cancel.png',
            'folder'        : '<?=$upload_path?>' + $(this).attr('id'),
            'queueID'       : 'fileQueue',
            'auto'          : true,
            'multi'         : false,
            'scriptData'        : ({'var_name': 'this_var_value'}),
            'fileDesc'          : 'Images and PDF files only! (JPG, PNG, PDF)',
            'fileExt'               : '*.pdf;*.jpg;*.jpeg;*.png',
            'buttonText'        : 'browse' +  $(this).attr('id')
        });
    });
});



<div id="fileQueue"></div>
<input class="upload" type="file" name="ImageUpload" id="_ID_1" /><br />
<input class="upload" type="file" name="ImageUpload" id="_ID_2" /><br />
<input class="upload" type="file" name="ImageUpload" id="_ID_3" /><br />