1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| <button id="up">Ouvrir</button>
$("#up").click(function(e){
if($('#uploadFile').length < 1)
$('<input id="uploadFile" type="file" name="Image" />').appendTo("body");
$('#uploadFile').click();
});
$("#uploadFile").change(function(e){
// ajout iframe
if($('#uploadFrame').length < 1)
$('<iframe id="uploadFrame" name="uploadFrame" src="#"></iframe>').appendTo('body');
var action = "mapage.html";
//deplacement input file dans nouveau form
$('<form id="uploadForm" target="uploadFrame" action="'+ action +'" method="post" enctype="multipart/form-data" >').append($(this)).appendTo('body');
$('form#uploadForm').submit().remove();
}); |