Jump to content
Fórum Script Brasil
  • 0

Upload de Imagens com Jquery


Andryon PHProgrammer

Question

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

<form id="form" name="form" enctype='multipart/form-data'>
    <label style="width:100%"><input type="file" name="FOTO" id="FOTO"  /></label><br />
    <label><!--Button--></label>
    <label><input type="button" class="button fechar" name="Cancelar" value="Cancelar" onclick="return parent.tb_remove();" /></label>

<input type="hidden" id="edt" name="edt" value="<!--EDITAR-->">
<input type="hidden" id="edtk" name="edtk" value="<!--EDITARK-->">

</form>
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.

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...