我正在尝试通过以下操作在管理字段上设置jquery自动完成功能:
$("#configuration_form :input").each(function()
{
$(this).autocomplete('ajax_products_list.php', {
cacheLength:0,
}).result(addAssociation)
});
我能够根据搜索字符串获取所有产品,但它们全都返回1行,而不是按产品返回1行,因此我无法选择一种特定的产品。
感谢您的帮助!