jquery php 百度搜索框智能提示效果
jquery php 百度搜索框智能提示效果
\
代码如下
index.html文件,保保存成index.htm
代码如下 复制代码
!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN /TR/xhtml1/DTD/xhtml1-transitional.dtd
html xmlns=/1999/xhtml
head
meta http-equiv=Content-Type content=text/html; charset=utf-8 /
titleAjax Auto Suggest/title
script type=text/网页特效 src=jquery-1.2.1.pack.js/script
script type=text/javascript
function lookup(inputString) {
if(inputString.length == 0) {
// Hide the suggestion box.
$(#suggestions).hide();
} else {
$.post(rpc.php, {queryString: +inputString+}, function(data){
if(data.length 0) {
$(#suggestions).show();
$(#autoSuggestionsList).html(data);
}
});
}
} // lookup
function fill(thisValue) {
$(#inputString).val(thisValue);
setTimeout($(#suggestions).hide();, 200);
}
/script
style type=text/css教程
body {
font-family: Helvetica;
font-size: 11px;
color: #000;
}
h3 {
margin: 0px;
padding: 0px;
}
.suggestionsBox {
position: relative;
left: 30px;
margin: 10px 0px 0px 0px;
width: 200px;
background-color: #212427;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border: 2px solid #000;
color: #fff;
}
.suggestionList {
margin: 0px;
padding: 0px;
}
.suggestionList li {
margin: 0px 0px 3px 0px;
padding: 3px;
cursor: pointer;
}
.suggestionList li:hover {
background-color: #659CD8;
}
/style
/head
body
div
form
div
Type your county:
br /
input type=text size=30 value= id=inputString onkeyup=lookup(this.value); onblur=fill(); /
/div
div class=suggestionsBox id=suggestions style=display: none;
img src=upArrow.png style=position: relative; top: -12px; left: 30px; alt=upArrow /
div class=suggestionList id=autoSuggestionsList
nbsp;
/div
/div
/form
/div
/body
/html
php文件
代码如下 复制代码
?php
mysql教程_connect(localhost, root ,root);
mysql_select_db(autoComplete);
$queryString = $_POST[queryString];
if(st
您可能关注的文档
最近下载
- 2025年版维医医师资格考试大纲.docx VIP
- 常用汉字表(2500字).pdf VIP
- 高中英语2025届高考热点环保主题作文素材(词汇+模板).doc VIP
- 2026年春季统编版(部编版)2024新教材二年级下册道德与法治教学计划、教学设计及教学反思(附目录).docx
- 高中英语2025届高考热点青少年心理健康主题作文固定搭配短语汇总.doc VIP
- (2025春)部编版一年级下册道德与法治全册教案 (新版本).docx
- 国家电网招聘考试综合能力(判断推理)模拟试卷2.docx VIP
- 运动损伤与康复-全套PPT课件.pptx
- 凌文铨组织承诺问卷.doc VIP
- 医美整形现场咨询绝对成交技巧话术.docx VIP
原创力文档

文档评论(0)