-3

I have a form

<form name="form1" id="form_cont" method="post" action="creaza.php">
    <label for="idno">IDNO</label>
    <input type="text" name="idno" id="idno" value="">

    <label for="tip_persoana">Tip Persoana</label>
    <label for="first_name">Nume</label>
    <input type="text" name="first_name" id="first_name">
    <label for="last_name">Prenume</label>
    <input type="text" name="last_name" id="last_name">
...

When I complet field id="idno" jQuery it showing me autocomplete.

$(document).ready(function()
    {
        $('#idno').autocomplete(
        {
            source: "autocomplet.php",
            minLength: 3
        });
    });

If I select one of this autocomplet, another fields (last_name, first_name...) whill be complet automatically from database and they will be disabled.

4

1 回答 1

2

jQuery 自动完成功能适用于字段,而不适用于表单。使用 jquery 可以轻松实现您想要做的事情,但这不是Autocomplete UI的设计目的。您可以为此编写自定义 jquery AJAX 请求。您甚至可以使用自动完成 ui 并解析返回的数据并填写表单的某些字段,但自动完成本身不会为您执行此操作

于 2013-01-20T13:39:21.877 回答