微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ajax+php 谷歌搜索框自动填充功能 实例代码


<html>
<head>
<script language="javascript"><!--
var HTTP_Request;
function update(v){
if (window.XMLHttpRequest) { // Mozilla,Safari,...
HTTP_Request = new XMLHttpRequest();
} else if (window.ActiveXObject) { // IE
HTTP_Request = new ActiveXObject("Microsoft.XMLHTTP");
}
HTTP_Request.onreadystatechange=out;
var url="tp.phtml?worksheet="+v.value;
HTTP_Request.open('GET',url,true);
HTTP_Request.send(null);
}
function out(){
if(HTTP_Request.readyState == 4){
var div=document.getElementById('out');
if(HTTP_Request.responseText!='') {
div.style.display='block';
div.innerHTML=HTTP_Request.responseText;
//alert(div.innerHTML);
}else{
div.style.display='none';
div.innerHTML='';
}
}
}
function end(val){
document.getElementById('ws').value=val;
document.getElementById('out').innerHTML='';
document.getElementById('out').style.display='none';
}

// --></script>
<style><!--
.test{
display:none;
z-index:100;
width:150px;
top:20px;
left:0px;
height:auto;
background-color:lightgrey;
border:1px solid;
position:absolute;
}
a:link {
text-decoration:none;
color:black;
}
a:visited {
text-decoration:none;
color:black;
}
a:hover {
text-decoration:none;
color:black;
}
--></style>
</head>
<body>
<div style="position:relative;" style="position:relative;">
<input type='txt' id='ws' name='ws' value='' onPropertyChange='update(this);' oninput='update(this);'/> <div id='out' class='test'></div>
<div>
<input type='txt' id='d'/>
</body>
</html>

页面


<?
include("include/db.inc");
$ws=$_GET['worksheet'];
if(empty($ws)||strlen($ws)<3){
//echo 'oo';
exit();
}
$db=new db();
$str='';
$sql="select * from user where deptID=10 and status='On' and worksheet like '%$ws%' order by worksheet";
$rt=$db->rtAssoc($sql);
while($row=array_shift($rt)){
$str.="<a href="\" href="\""#\" onclick=\"end('"
.$row['emp_name'].':'.$row['emp_worksheet']."');\">"
.$row['emp_name'].':'.$row['emp_worksheet']
.'</a>,<br/>';
}
$str=substr($str,-6);
echo trim($str);
exit();
?>

页面二。

这个东西功能上模仿谷歌,但是效果很不理想。一般简单的应用可以满足

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐