JavaScript实现类似于google搜索提示的功能的问题.

hzq1989 2008-08-22 03:31:20
各位打下.我想问下...用JavaScript实现类似于google搜索提示的功能的问题......
希望大些们用代码帮我下噢.
...全文
383 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
ppact 2008-08-22
  • 打赏
  • 举报
回复
那是用ajax实现的内容!
piaolankeke 2008-08-22
  • 打赏
  • 举报
回复
把如下代码加入<body>区域中
<SCRIPT LANGUAGE="JavaScript">

//by Leif King e-mail:leif.d.king@vanderbilt.edu
//Feel free to use this or modify it Please leave this comment.

function makeArray(q){
for(i=1 ; i < q ; i++){this[i]=0}}
w=1;
howmanysites=4; // How many sites are listed below?

Sites = new makeArray(howmanysites);

Sites[1] = "http://www.js-planet.com|Great scripts!";
//put yoursites then | and what you want the box to show here's where I got the orig.
Sites[2] = "http://www.geocities.com|Free webspace!";
Sites[3] = "http://www.yahoo.com|Great Search Engine!";

function showSites() {
if (w > howmanysites) { w=1; };
var string=Sites[w] + "";
var split=string.indexOf("|");
var url=string.substring(0,split);
var word=string.substring(split + 1,string.length);
document.form.url.value=url;
document.form.word.value=word;
w+=1;
window.setTimeout('showSites()',5000);

}
function visitSite() {
window.location=document.form.url.value;
}
</SCRIPT>
<center>
<form name=form>
<table><tr><td align=center>
<input type=hidden name=url value="">
<input type=text name=word value="" onFocus="visitSite()" size=40>
</td></tr></table>
</form>
</center>

<script>
showSites();
</script>
yafeiok 2008-08-22
  • 打赏
  • 举报
回复
[Quote=引用 2 楼 Ami121 的回复:]
去网上找吧 "提示输入" ajax可以实现你这方面的要求
[/Quote]
Ami121 2008-08-22
  • 打赏
  • 举报
回复
去网上找吧 "提示输入" ajax可以实现你这方面的要求
mellow_msb 2008-08-22
  • 打赏
  • 举报
回复
这个要用ajax实现

67,538

社区成员

发帖
与我相关
我的任务
社区描述
J2EE只是Java企业应用。我们需要一个跨J2SE/WEB/EJB的微容器,保护我们的业务核心组件(中间件),以延续它的生命力,而不是依赖J2SE/J2EE版本。
社区管理员
  • Java EE
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧