读书人

腾讯股票大赛的autoComplete兑现

发布时间: 2012-08-30 09:55:54 作者: rapoo

腾讯股票大赛的autoComplete实现

腾讯股票大赛的autoComplete兑现

ajax.xml是股票信息列表数据源,通过ajax绑定到autoComplete插件。neverModules-autoComplete.js第311行可以自定义加入选择股票后产生的事件。

index.html

?neverModules-autoComplete.js

?ajax.js

/* present by never-online *//* this is the autocomplete container style, summary style */.neverModules-auto {  border:1px solid #000;  background-color:#fff;  width:100%;  margin:0;  padding:0;  -moz-user-select:none;}/* this the autocomplete property useContent is not true,the style is the item css, default style or onmouseout style */.neverModules-auto .out {  width:100%;  color:#000;  -moz-user-select:none;}/* this the autocomplete property useContent is not true,the style is the item css, highlight (onmouseover) style */.neverModules-auto .over {  width:100%;  color:highlighttext;  background-color:#3366CC;  -moz-user-select:none;}/* -----------------------------if autocomplete property useContent is true, using folowing style ----------------------------- *//* text style, in the left of the autocomplete container */.neverModules-auto .autot {  font-size:9pt;  color:#000;  text-align:left;  padding-left:5px;  width:100%;  -moz-user-select:none;}.neverModules-auto .autot-over {  font-size:9pt;  color:#fff;  text-align:left;  padding-left:5px;  width:100%;  -moz-user-select:none;}/* autocomplete right content default */.neverModules-auto .autoc {  font-size:8pt;  color:#008000;  text-align:right;  padding-right:0px;  display: none;  width:0%;  -moz-user-select:none;}.neverModules-auto .autoc-over {  font-size:8pt;  color:#fff;  text-align:right;  padding-right:0px;  display: none;  width:0%;  -moz-user-select:none;}
?源码下载:stock

读书人网 >Web前端

热点推荐