以下のような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