12

如何在您需要发送文件的 html 中创建一个按钮,以允许您选择文件,然后在我想要的页面上发送它,而无需使用按钮选择文件和按钮将其发送到另一个页面?谢谢!

4

2 回答 2

19
<form>
    <input type="file" onchange="this.form.submit()" /> 
</form>
于 2012-07-10T11:30:32.430 回答
1

你应该使用

HTML

<form id="form">
 <input type="file" id=file"/> 
</form>

更多信息:http ://www.w3.org/wiki/HTML/Elements/input/file

jQuery

$("#file").onchange(function () {
 $("#form").submit();
});
于 2012-07-10T11:28:32.637 回答