segment的图片上传是怎么做的?

他的图片上传不是用iframe而是直接使用div.

怎么弹出读取客户端文件夹,选取图片后自动上传.

我是通过jquery插入iframe到html里,不过这里有个问题,就是上传图片后,iframe是不会自动关闭的。

html

<iframe src='./imgUpload.php' name='imgiframe'></iframe>

imgUpload.php

<form action='imgUpload.php' method='post' enctype='multipart/form-data'>
            <input type='file' name='file' multiple='multiple'>
            <input type='submit' id='imgUpload''>
        </form>
阅读 3.5k
2 个回答

主要的不就是file控件吗?

<input type="file" id="editorUpload" name="image" class="widget-upload__file">

其他的是为了美化而已

上传完回调个参数用来判断是否成功(关闭)。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题