Ao clicar no botao salvar, fecha a janela e dispara uma função javascript
function addImagem( limpa ){
var edtk = $("iframe").contents().find("#edtk").val();
var edtm = $("iframe").contents().find("#edt").val();
var FOTO = $("iframe").contents().find('#FOTO').attr('files')[0];
if (FOTO == ""){
alert ('O campo FOTO é obrigatório!');
return false;
}
if (FOTO != ""){
// Fecha Modal //
tb_remove();
param = "limpa=" + limpa
+ "&k=" +edtk
+ "&edt=" + edtm
+ "&PRD_ID=" + $('#PRD_ID').val()
+ "&FOTO=" + FOTO;
$.post("ajxUpFoto.php?"+param, {queryString: "", async:false, contentType: 'multipart/form-data'}, function(data){
if (data) {
$("#imagens").html(data);
}
});
}
}
alguém sabe como passo a imagem para o script ajxUpFoto.php? Fosse no php usaria alguma coisa parecida com $_FILES["EMP_LOGO"]["name"], mas no jQuery não sei como fazer isso.
Question
Andryon PHProgrammer
Pessoal,
Tenho uma página php e um link na página para fazer o upload de imagens. Quando clico neste link abre uma modal com o campo file
Ao clicar no botao salvar, fecha a janela e dispara uma função javascriptalguém sabe como passo a imagem para o script ajxUpFoto.php? Fosse no php usaria alguma coisa parecida com $_FILES["EMP_LOGO"]["name"], mas no jQuery não sei como fazer isso.
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.