上传图片

Posted tuziling

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上传图片相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    
</head>
<body>
    <form>
        文件: <input type="file" id="myFile"  name =‘myfile‘ onchange="getFileContent();">  <br>
        <input type="submit">
    </form>
    <img src="" alt="">
    <script>
            function getFileContent(){
                var reader = new FileReader();
                var file = document.querySelector(#myFile).files;
                console.log(file);
                reader.readAsDataURL(file[0])
                
                reader.onload = function(){
                    console.log(123);
                    document.querySelector(img).src = reader.result
                }

            }
          

    </script>
</body>
</html>

 

以上是关于上传图片的主要内容,如果未能解决你的问题,请参考以下文章

使用 AFNetworking、ios 上传图片

Android - 应用程序启动时片段 onCreate 崩溃

手机safari图片上传竖变横处理

java Ftp上传创建多层文件的代码片段

根据图片的url地址下载图片到本地保存代码片段

如何将CKeditor编辑器的上传和thinkphp结合