上傳頭像

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4     <title>test</title>
 5 </head>
 6 <body>
 7  
 8 <div>
 9     頭像:
10     <label for="file"><img style="width: 20px;" src="https://ss0.baidu.com/6ONWsjip0QIZ8tyhnq/it/u=2790581511,3561251597&fm=58"></label>
11     <input type="file" name="" id="file" style="display: none;">
12 </div>
13  
14 <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
15 <script>
16     // 找到頭像的input標籤綁定事件
17     $("#file").on("change", function(){
18         // 建立一個讀取文件的對象
19         var fileReader = new FileReader();
20         // 讀取選擇的文件
21         fileReader.readAsDataURL(this.files[0]);
22         // 等待文件讀取完畢
23         fileReader.onload = function(){
24             // 更改img的src屬性
25             $("img").attr("src", fileReader.result);
26         };
27     })
28 </script>
29 </body>
30 </html>
相關文章
相關標籤/搜索