Показать сообщение отдельно
  #1 (permalink)  
Старый 18.11.2014, 19:39
Аспирант
Отправить личное сообщение для desperado Посмотреть профиль Найти все сообщения от desperado
 
Регистрация: 26.08.2014
Сообщений: 51

Изменить тип загрузки файла
Всем привет, подскажите плз такой глупый момент:

Есть код:

_addEventListner: function() {
        var that = this,
            audioInput = document.getElementById('uploadedFile'),
            dropContainer = document.getElementsByTagName("canvas")[0];
        //listen the file upload
        audioInput.onchange = function() {
            //the if statement fixes the file selction cancle, because the onchange will trigger even the file selection been canceled
            if (audioInput.files.length !== 0) {
                //only process the first file
                that.file = audioInput.files[0];
                that.fileName = that.file.name;
                if (that.status === 1) {
                    //the sound is still playing but we upload another file, so set the forceStop flag to true
                    that.forceStop = true;
                };
                document.getElementById('fileWrapper').style.opacity = 1;
                that._updateInfo('Uploading', true);
                //once the file is ready,start the visualizer
                that._start();
            };
        };


на странице с инпут тайп file и id='uploadedFile' выбирается файл и попадает в "that.file"

как мне изменить код так, что бы не выбирался файл с компьютера юзера, т.е. не с поля input
а с прямого урла в инете, например "http://site.ru/new-file.pdf"
Ответить с цитированием