我的要求是通过选择一个文件
<input type="file">
并将所选文件的位置发送到
<form>
所以我写了如下的html代码:
<form method="post" action="Xmlsubmit">
<input name="path" type="file" id="t" />
<input type="submit" class="button" value="submit">
</form>
这在 IE 中没有任何问题,但是当我使用 google chrome 和 mozilla firefox 尝试此操作时,我面临“找不到文件异常”。是否有任何工作可以与 google chrome 和 mozilla firefox 一起使用?
我需要的是:我只是想将所选文件的位置发送到表单元素