Visualizza l'errore sotto in Safari.
Impossibile eseguire "createObjectURL" su "URL": nessuna funzione trovata corrispondente alla firma fornita.
Il mio codice è:
function createObjectURL(object) {
return (window.URL) ? window.URL.createObjectURL(object) : window.webkitURL.createObjectURL(object);
}
Questo è il mio codice per l'immagine:
function myUploadOnChangeFunction() {
if (this.files.length) {
for (var i in this.files) {
if (this.files.hasOwnProperty(i)) {
var src = createObjectURL(this.files[i]);
var image = new Image();
image.src = src;
imagSRC = src;
$('#img').attr('src', src);
}
}
}
}
window.URL.createObjectURL('broken')
genera un errore:Uncaught TypeError: Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided.
createObjectURL(...)
funzione quando ricevi quell'errore ?