我的网站有一个 MyAccount 页面,该页面将有一个允许用户上传图像的表单。
<from action='javascript:uploadFile'>
<input type='file' name='Upload'>
</form>
我想做的是让它调用另一个 .php 文件,例如:
<script type="text/javascript">
function uploadFile()
{
addPhoto.php giving files $id and Upload (from the form)
}
在用户实际离开 MyAccount 页面的情况下,如何实现这一点?