-3

我正在编写一个对帖子进行评分的应用程序,提交表单的前几个字段包含有关帖子的基本信息。现在,第一个字段使用 MySQL 数据库表中的 jQuery UI 自动完成。

我想达到一个点,如果用户选择一个自动完成选项而不是手动输入所有内容,则查询数据库,填写基本信息,并禁用字段(以防止重复条目)。

我对这里的适当方法有点茫然。有什么建议吗?

谢谢,罗伯。

4

1 回答 1

0

您可以使用select事件autocomplete触发对服务器的 AJAX 调用。

$( ".selector" ).autocomplete({
    select: function( event, ui ) {
        /* data used for autocomplete is contained in ui.item... will assume you have an ID included in data object */

       $.post( url, { id:  ui.item.id), function(response){
          /* do something if needed with response from server*/
       })
   }
});

在服务器端接收数据,就像接收带有命名字段的表单一样id$_POST['id']

这是非常松散的,因为没有提供太多有问题的细节。

API参考:

http://api.jqueryui.com/autocomplete/#event-select

http://api.jquery.com/jQuery.post/

于 2013-01-01T22:48:26.653 回答