php中jQuery插件autocomplate的简单使用笔记
首先需要的文件有jquery.js,jquery.autocomplete.js,jquery.autocomplete.js,这三个文件,哪里有?百度、谷歌都可以找到。可以去官网上下,里面包含了一些demo,只留下这三个文件即可。
js代码:
复制代码 代码如下:
HTML代码中只有:
下面是php代码:
复制代码 代码如下:
if($_GET['action'] == 'getAjaxInfo'){
//这里由于我写其它应用了,如果单纯做这一个自动完成,可以写简单一点
if($_GET['name'] != ''){
$field = 'name';
}
if($field != ''){
$val = $_GET['$field'];
$sql = "select `$field` from doctor_info where $field like '%$val%'";
$rst = $aa->execute($sql);
while($row = mysql_fetch_array($rst)){
echo $row[0]."\n";
}
}
exit;
}
直接运行即可实现 。
下面贴出来autocomplate的一些公共用法,从别的站上面粘过来的,参考方便
属性 | 类型 | 描述 | 定义在 |
---|---|---|---|
actionPrefix | string | actionsID的前缀. | CWidget |
attribute | string | 这个widget相关的属性. | CInputWidget |
autoFill | boolean | 选择一个值时自动填充textinput, 替换已经键入的或选择的值. | CAutoComplete |
cacheLength | integer | 存储在cache中的后台查询结果的数目. | CAutoComplete |
controller | CController | 返回这个小物件所属的controller. | CWidget |
cssFile | mixed | 这个widget使用的CSS文件. | CAutoComplete |
data | array | 保存在客户端提供候选选择项的数据. | CAutoComplete |
delay | integer | 当键入后,autocompleter等待多少毫秒激活 . | CAutoComplete |
extraParams | array | 后端的附加参数. | CAutoComplete |
formatItem | string | 为一个item提供高级标记的javascript函数. | CAutoComplete |
formatMatch | string | 用来限制autocomplete搜索匹配的数据的javascript函数 . | CAutoComplete |
formatResult | string | 在结果放入input字段前,提供格式化值的javascript函数 . | CAutoComplete |
highlight | boolean|string | 是否在选择框中高亮匹配. | CAutoComplete |
htmlOptions | array | 被渲染到input tag的附加HTML选项. | CInputWidget |
id | string | 返回本小物件(widget)的ID或如果请求的话生成一个新的. | CWidget |
inputClass | string | input元素的CSS类. | CAutoComplete |
loadingClass | string | 当数据从后端载入时使用的CSS类. | CAutoComplete |
matchCase | boolean | 是否比较时大小写敏感. | CAutoComplete |
matchContains | boolean | 是否使用内部比较(匹配单词的一部分) (i. | CAutoComplete |
matchSubset | boolean | 是否autocompleter为更多的指定查询使用缓存 . | CAutoComplete |
max | integer | select box的item数目. | CAutoComplete |
methodChain | string | 被附加到autocomplete构造函数后的方法链调用. | CAutoComplete |
minChars | integer | 用户必须键入的最少字符数 在autocompleter激活之前. | CAutoComplete |
model | CModel | 这个widget相关的数据模型. | CInputWidget |
multiple | boolean | 是否允许超过一个autocompleted-value输入. | CAutoComplete |
multipleSeparator | string | 当使用多个选项时,选项之间的分隔符. | CAutoComplete |
mustMatch | boolean | 如果设置为true,autocompleter将仅仅允许结果通过后端呈现 . | CAutoComplete |
name | string | input 名称. | CInputWidget |
options | array | 传递到autocomplete js 对象的构造函数的附加选项. | CAutoComplete |
owner | CBaseController | 返回这个小物件的所有者/创造者. | CWidget |
resultsClass | string | 下拉列表的CSS类. | CAutoComplete |
scroll | boolean | 当更多的结果超过scrollHeight设置的高度时,是否滚动. | CAutoComplete |
scrollHeight | integer | autocomplete的举动高度(用像素)s. | CAutoComplete |
selectFirst | boolean | 如果这个设置为true,第一个autocomplete值将 被自动通过tab/回车选择,即使没有通过键盘或鼠标精选选择 . | CAutoComplete |
skin | mixed | 这个widget使用的皮肤名称. | CWidget |
textArea | boolean | 是否使用一个text area显示autocomplete. | CAutoComplete |
url | string|array | 返回候选选项的URL. | CAutoComplete |
value | string | input值 | CInputWidget |
viewPath | string | 返回这个物件包含视图文件的目录. | CWidget |
width | integer | 指定select box的自定义宽度. | CAutoComplete |

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
