Привет.
Пробую сделать загрузку картинок
с компа не на сервер, а на веб страницу
с помощью input type=file.
Настоящий адрес подменяется на
C:\fakepath\join2.png.
Zагрузка не возможна или я ошибаюсь?
В примере просмотр строки из инпута.()
Код:
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title></title>
<style></style>
<script src="js/jquery-1.7.1.min.js"></script>
</head>
<body>
<input type="file" name="image" class="image" value="valik" /><br/>
<span id="resInp"></span>
<script>
/*5 secund на выбор картинки*/
setTimeout(function(){
var image=$('input').val();
var length=image.length;
$('#resInp').prepend(typeof image +' , '+'Path: '+image+' , '+'Length: '+length);
},5000);
</script>
</body>
</html> |