样的提示功能,所以去掉了表单记忆功能),只要在form中加一个autocomplete="off" *补充: 和google suggest还有一些差距,比如一直按着方向键问题和其他细节问题,这些都有待改进. *效果图:
限于文章长度,只帖首页和js,其他的去附件下载: 草履虫--仿googlesuggest.rar 首页:index.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="gb2312"> <head> <meta http-equiv="Content-Type" content="text/html; charset=GB2312" /> <title>草履虫---简易Google Suggest</title> <link type="text/css" rel="stylesheet" href="suggest.css"/> <script type="text/javascript" src="suggest.js"></script> </head> <body onclick="hide_suggest();"> <img src="suggest.gif" onclick="hide_suggest();" /> <form action="result.asp" method="post" name="search" autocomplete="off"> <!--input type="text" name="keyword" id="keyword" onkeyup="keydeal(event);" onclick="keydeal(event);"/--> <input type="text" name="keyword" id="keyword" onkeyup="keyupdeal(event);" onkeydown="keydowndeal(event);" onclick="keyupdeal(event);"/> <input type="submit" value="手气不错"/> <div id="suggest"></div> </form> </body> </html> suggest.js view plaincopy to clipboardprint? var j=-1; var temp_str; var $=function(node){ return document.getElementById(node); } var $=function(node){ return docum |