English 中文(简体)
让scriptaculous自动补全器表现得像谷歌即时
原标题:getting scriptaculous autocompleter to behave like google instant

你知道,当你开始在自动完成搜索框中搜索时,你会得到一个可能的结果列表。从这些结果中,比如说你点击了列表上的一个项目,我想获取该项目并执行另一个搜索以给出另一个结果列表。就像谷歌的工作方式一样。如果你不理解我的意思,试着在谷歌搜索框里输入类似ja的内容。它会给出一个可能的结果列表,当你选择其中一个结果时,它会进行另一次搜索并给出另一组结果。

请有人知道如何用脚本自动完成吗?或者任何其他方式,网络上的任何例子,都会非常感激。

顺便说一句,我正在使用codeigniter框架工作(php)

问题回答

你肯定可以做到。就我个人而言,我会在jQuery中使用jQuery UI中的Autocomplete来完成。

http://jqueryui.com/demos/autocomplete/

你可以让它像往常一样加载结果,但格式不同,或者扩展jqueryui。很简单。

由于它在jQuery中是可能的,所以它肯定可以使用脚本自动补全器,但我不熟悉它。

您可以看到输出显示的位置:

<div id="autocomplete_choices" class="autocomplete"></div>

如果你能按照你想要的方式来设计它,而不是像下拉列表一样,那么你就会有你的即时消息。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签