caohaigang2008 发表于 2013-2-7 16:40:53

JQuery Autocomplete

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Insert title here</title><link rel="stylesheet" type="text/css" href="jquery.autocomplete.css" /><script type="text/javascript" src="jquery-1.3.1.js"></script><script type="text/javascript" src="jquery.autocomplete.js"></script></head><body><input type="text" id="website" /><script type="text/javascript">var data = [                   "google1",                "google2",                "google3",                "google4",                "google5",                "google6",                "google7",                "google8",                "google8"                  ];$("#website").autocomplete(data);</script></body></html> 
页: [1]
查看完整版本: JQuery Autocomplete