Dwr轻松实现google的suggest功能

今天将我正在进行开发的系统中注入了ajax的suggest功能,虽然不像我看的框架那样通用,但我感觉即简单又好用,我是将dwr框架引入程序中,在javascript中调用类方法查询到oracle数据库的数据,dwr真是快捷方便。下面是实现代码:
以下是SuggestControl.js
[code]
var arrOptions = new Array();
var strLastValue = "";
var bMadeRequest;
var theTextBox;
var objLastActive;
var currentValueSelected = -1;
var bNoResults = false;
var isTiming = false;
window.onload = function() {
var elemSpan = document.createElement("span");
elemSpan.id = "spanOutput";
elemSpan.className = "spanTextDropdown";
document.body.appendChild(elemSpan);
document.forms[0].consignOrgName.obj =
SetProperties(document.forms[0].consignOrgName,
document.forms[0].consignOrgValue,'',true,true,true,true,
"没有匹配的名称",false,true);
}
function SetProperties(xElem, xHidden, xserverCode, xignoreCase, xmatchAnywhere,
xmatchTextBoxWidth, xshowNoMatchMessage, xnoMatchingDataMessage, xuseTimeout,
xtheVisibleTime) {
var props = {
elem: xElem,
hidden: xHidden,
serverCode: xserverCode,
regExFlags: ((xignoreCase) ? "i" : ""),
regExAny: ((xmatchAnywhere) ? "^" : ""),
matchAnywhere: xmatchAnywhere,
matchTextBoxWidth: xmatchTextBoxWidth,
theVisibleTime: xtheVisibleTime,
showNoMatchMessage: xshowNoMatchMessage,
noMatchingDataMessage: xnoMatchingDataMessage,
useTimeout: xuseTimeout
};
AddHandler(xElem);
return props;
}
var isOpera = (navigator.userAgent.toLowerCase().indexOf("opera") != -1);
function AddHandler(objText){
objText.onkeyup = GiveOptions;
objText.onblur = function(){
if(this.obj.useTimeout)StartTimeout();
}
if(isOpera)objText.onkeypress = GiveOptions;
}
function GiveOptions(e){
var inkey = -1;
if(window.event){
inkey = event.keyCode;
theTextBox = event.srcElement;
}
else{
inkey = e.which;
theTextBox = e.target;
}
if(theTextBox.obj.useTimeout){
if(isTiming)EraseTimeout();
StartTimeout();
}
if(theTextBox.value.length == 0 && !isOpera){
arrOptions = new Array();
HideTheBox();
strLastValue = "";
return false;
}
if(objLastActive == theTextBox){
if(inkey == 13){
GrabHighlighted();
theTextBox.blur();
return false;
}
else if(inkey == 38){
MoveHighlight(-1);
return false;
}
else if(inkey == 40){
MoveHighlight(1);
return false;
}
}
if(objLastActive != theTextBox ||
theTextBox.value.
indexOf(strLastValue) != 0 ||
((arrOptions.length == 0 ||
arrOptions.length == 15)
&& !bNoResults) ||
(theTextBox.value.length
<= strLastValue.length)){

objLastActive = theTextBox;
bMadeRequest = true;
TypeAhead(theTextBox.value);
}
else if(!bMadeRequest){
BuildList(theTextBox.value);
}
strLastValue = theTextBox.value;
}
function TypeAhead(xStrText) {
arrOptions = [];
GetData.getData(xStrText, BuildList);
bMadeRequest = false;
}
function CreateArray(ajaxResponse){
for(var index in ajaxResponse){

var newtext = ajaxResponse[index].fcname;
var newval = ajaxResponse[index].fcode;
arrOptions.push(new Array(newval,newtext));
}
}
function BuildList(theText){
CreateArray(theText);
SetElementPosition(theTextBox);

var theMatches = MakeMatches(strLastValue);
theMatches = theMatches.join().replace(/\,/gi,"");
if(theMatches.length > 0){
document.getElementById("spanOutput").innerHTML = theMatches;
document.getElementById("OptionsList_0").className = "spanHighElement";
currentValueSelected = 0;
bNoResults = false;
}
else{
currentValueSelected = -1;
bNoResults = true;
if(theTextBox.obj.showNoMatchMessage)
document.getElementById("spanOutput").innerHTML =
"<span class='noMatchData'>" + theTextBox.obj.noMatchingDataMessage + "</span>";
else
HideTheBox();
}
}
function SetElementPosition(theTextBoxInt){
var selectedPosX = 0;
var selectedPosY = 0;
var theElement = theTextBoxInt;
if(!theElement) return;
var theElemHeight = theElement.offsetHeight;
var theElemWidth = theElement.offsetWidth;
while(theElement != null){
selectedPosX += theElement.offsetLeft;
selectedPosY += theElement.offsetTop;
theElement = theElement.offsetParent;
}
xPosElement = document.getElementById("spanOutput");
xPosElement.style.left = selectedPosX;
if(theTextBoxInt.obj.matchTextBoxWidth)
xPosElement.style.width = theElemWidth;
xPosElement.style.top = selectedPosY + theElemHeight;
xPosElement.style.display = "block";
if(theTextBoxInt.obj.useTimeout){
xPosElement.onmouseout = StartTimeout;
xPosElement.onmouseover = EraseTimeout;
}
else{
xPosElement.onmouseout = null;
xPosElement.onmouseover = null;
}
}
var countForId = 0;
function MakeMatches(xCompareStr){
countForId = 0;
var theMatch;
var matchArray = new Array();
var regExp = new RegExp(theTextBox.obj.regExAny +
xCompareStr,theTextBox.obj.regExFlags);
for(i = 0; i < arrOptions.length; i++){
if(arrOptions[i][1] != null)
theMatch = arrOptions[i][1].match(regExp);
if(theMatch){
matchArray[matchArray.length]=
CreateUnderline(arrOptions[i][1],xCompareStr,i);
}
}
return matchArray;
}
function CreateUnderline(xStr,xTextMatch,xVal){
var undeStart = "<span class='spanMatchText'>";
var undeEnd = "</span>";
var aStart;
var matchedText;
var xreplace='';
var selectSpanStart = "<span style='width:100%;display:block;'class='spanNormalElement'
οnmοuseοver='SetHighColor(this)'";
var selectSpanEnd = "</span>";
selectSpanMid = "οnclick='SetText("+xVal+")'" +"id='OptionsList_" + countForId +
"' theArrayNumber='"+xVal+"'>";
var regExp = new RegExp(theTextBox.obj.regExAny +
xTextMatch,theTextBox.obj.regExFlags);
if(xStr != undefined){
aStart = xStr.search(regExp);
matchedText = xStr.substring(aStart,aStart + xTextMatch.length);
xreplace = xStr.replace(regExp,undeStart + matchedText + undeEnd);
countForId++;
}
return selectSpanStart + selectSpanMid + xreplace + selectSpanEnd;

}
function MoveHighlight(xDir){
if(currentValueSelected >= 0){
newValue = parseInt(currentValueSelected) + parseInt(xDir);
if(newValue > -1 && newValue < countForId){
currentValueSelected = newValue;
SetHighColor(null);
}
}
}
function SetHighColor(theTextBox){
if(theTextBox){
currentValueSelected =
theTextBox.id.slice(theTextBox.id.indexOf("_") + 1,
theTextBox.id.length);
}
for(i = 0; i < countForId; i ++){
document.getElementById('OptionsList_'+i).className =
'spanNormalElement';
}
document.getElementById('OptionsList_' +
currentValueSelected).className = 'spanHighElement';
}
function SetText(xVal){
theTextBox.value = arrOptions[xVal][1];
theTextBox.obj.hidden.value = arrOptions[xVal][0];
document.getElementById("spanOutput").style.display = "none";
currentValueSelected = -1;
}
function GrabHighlighted(){
if(currentValueSelected >= 0){
xVal = document.getElementById("OptionsList_" +
currentValueSelected).getAttribute("theArrayNumber");
SetText(xVal);
HideTheBox();
}
}
function HideTheBox(){
document.getElementById("spanOutput").style.display = "none";
currentValueSelected = -1;
EraseTimeout();
}
function EraseTimeout(){
clearTimeout(isTiming);
isTiming = false;
}
function StartTimeout(){
isTiming = setTimeout("HideTheBox()",theTextBox.obj.theVisiableTime);
}
[/code]
以下是class GetDate 及类方法,以获得要查询的数据
[code]
public GetData(){}

public List getData(String str){
List list = null;
Client cl = null;
try {
con = ConnectionHandler.getConnection("seaDataSource");
st = con.createStatement();
rs = st.executeQuery("select F_CODE,F_CNAME from view_collect where " +
"F_SHORT like '"+str+"%' and rownum <= 5");
while(rs.next()) {
cl = new Client();
cl.setFcode(rs.getString("F_CODE"));
cl.setFcname(rs.getString("F_CNAME"));
// System.out.println("---"+cl.getFcname());
if(list==null)list = new ArrayList();
list.add(cl);
cl = null;
}
} catch (Exception e) {
e.printStackTrace();
}finally {
try {
rs.close();
st.close();
con.close();
} catch (Exception e)
{e.printStackTrace();}
}
return list;
}
[/code]
以下是dwr.xml中的配置
[code]
<dwr>
<allow>
<create creator="new" javascript="GetData">
<param name="class" value="com.fmslite.seaexp.dao.GetData" />
</create>
<convert converter="bean" match="com.fmslite.seaexp.pojo.Client"/>
</allow>
</dwr>
//*********************以下是web.xml中的配置********************************//
<servlet>
<servlet-name>dwr-invoker</servlet-name>
<servlet-class>org.directwebremoting.servlet.DwrServlet</servlet-class>
<init-param>
<param-name>debug</param-name>
<param-value>true</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>dwr-invoker</servlet-name>
<url-pattern>/dwr/*</url-pattern>
</servlet-mapping>
[/code]
以下是css的sheet文件
[code]
.span.spanTextDropdown {
position: absolute;
top: 0px;
left: 0px;
width: 150px;
z-index: 101;
background-color: #F6EEFF;
border: 1px solid #8E8DAA;
padding-left: 2px;
overflow: visible;
display: none;
font-size:8pt
}
.span.spanMatchText {
color:#B8B8FF;
font-weight: bold;
font-size:8pt
}
.span.spanNormalElement {
background: #F6EEFF;
font-size:8pt
}
.span.spanHighElement {
font-size:8pt;
background: #A2A1C5;
color: #FFFFFF;
cursor: pointer
}
.span.noMatchData {
font-weight: bold;
color: #0000ff;
font-size:8pt
}
[/code]
如能配置正确以上文件及路径,即可轻松实现Suggest的基本功能。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值