Jump to content
Fórum Script Brasil
  • 0

<input text name=produto[]>


Rodrigo Svierzoski

Question

bom dia pessoal,

Tenho uma funçao javascript que ao clicar em um icone adiciona 5 inputs. blza funciona perfeito.

Em um desses inputs eu tenho <input text name=produto[] value="" id="inputString" onkeyup="pesquisar(this.value);" onblur="fill();"> e nesse input ao começar digitar ele vai pesquisar no meu banco de dados com arquivo.PHP

CODIGO:

<script type="text/javascript">

function pesquisar(inputString) {

if(inputString.length == 0) {

// Hide the suggestion box.

$('#suggestions').hide();

} else {

$.post("estoque/lista_produto.php", {queryString: ""+inputString+""}, function(data){

if(data.length >0) {

$('#suggestions').show();

$('#autoSuggestionsList').html(data);

}

});

}

} // lookup

function fill(thisValue) {

$('#inputString').val(thisValue);

setTimeout("$('#suggestions').hide();", 200);

}

</script>

Para 1 Input ele pesquisa no banco mostra certinho e ao clicar, ele joga a informacao no input perfeitamente, quando eu adiciono outro input ele não consegue pesquisar.

Pelo que eu pesquisei tals, eu preciso passar o ID do input para o javascript, coisa que não estou conseguindo acertar a sintaxe.

algum colega pode me da uma força.

Obrigado,

Rodrigo

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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