我正在尝试将'uploadify'上传进度条码集成到我的某个网站中。通常我的所有字段都在表单标记内,在提交时它们会发布并进行处理。
这里,为了发布表单内容,它们必须在脚本内部。这有效,如果有固定变量,但如果我想要包含其他表单内容 - 用户输入,则不发布,因为此设置中的表单标记缺少“操作”部分。表单变量在脚本中处理。
我试图在脚本中引用(在此示例中)'test'输入,但它没有被读取。我试图弄清楚如何在提交到表单下面的脚本中阅读表单内容。
<form>
<div id="queue"></div>
<input id="test" name="test" type="text">
<input id="file_upload" name="file_upload" type="file" multiple="true">
</form>
<script type="text/javascript">
<?php $timestamp = time();?>
$(function() {
$('#file_upload').uploadify({
'formData' : {
'timestamp' : '<?php echo $timestamp;?>',
'token' : '<?php echo md5('unique_salt' . $timestamp);?>',
'test' : ???
},
'swf' : 'uploadify.swf',
'uploader' : 'ul_beta.php'
});
});
</script>