0

以下のようなhtmlアップロード/ブラウジングフィールドがあります

<html>
  <head>
    <script>
              function get_image_or_files_path()
              {  
                 var files = document.getElementById("selectedFile").files;
                 for (var i = 0; i < files.length; i++)
                    console.log(files[i].name+'>>>>>>>>>>>>>>>');
              }       
    </script>
  </head>
  <body>
     <input type="file" id="selectedFile" name="get_image_path" onfocusout="get_image_or_files_path()"/>
  </body>
</html>

上記のJavaScriptで、file/image名前を取得することはできますurl/pathが、file/image

4

0 に答える 0