我正在编写一个代码来一步浏览和上传文件。我有这个代码:
<input type="file" id="image" style="display: none;">
<input type="submit" name="upload" id="upload" value="upload"
onclick="document.getElementById('image').click();">
此代码允许我选择文件并提交表单,但我想使用 $_FILE 属性,并且由于文件输入中没有名称字段,我无法访问文件信息。
所以我修改了我的代码以添加名称字段,如下所示
<input type="file" name="image" id="image" style="display: none;" />
<input type="submit" name="upload" id="upload" value="upload"
onclick="document.getElementById('image').click();" />
现在,使用此代码,我仍然可以浏览文件,但未提交。所以简而言之,我无法使用这两种方法访问 $_FILE 。
任何建议我可以做些什么来继续前进。??
TIA