我有两个使用标准文件上传功能的按钮,我需要有关如何将这些调用转换为JavaScript的帮助:
<form id="form1" enctype="multipart/form-data" method="post" action="" style="position:absolute;top:30px;left:200px;margin:0;background-color:transparent;">
<table width="400" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="10" bgcolor="transparent" align="center" valign="middle">
<div>
<input type="file" name="fileToUpload" id="fileToUpload" style="width:70px;margin-top:0px;margin-left:0px;background-color:transparent;"accept="image/jpeg,image/gif,image/png" onchange="fileSelected();">
</div>
</td>
<td width="10" bgcolor="transparent" align="center" valign="middle">
<iframe src="../work7/uploadfr.htm" name="uploadframe" width="10" height="10" scrolling="No" frameborder="0" id="uploadframe"></iframe>
</td>
<td width="10" bgcolor="transparent" align="left" valign="middle">
<input type="button" onclick="uploadFile()" value="Upload">
</td>
<td width="245" bgcolor="transparent" align="left" valign="middle">
<div id="progressNumber"></div>
</td>
</tr>
</table>
</form>
我需要使用分别调用的JavaScript启动函数:fileSelected()
&amp; uploadFile()
。
或者,是否有另一种方法可以在纯JavaScript中制作一个选定的文件和上传按钮?