Ajax 스마트 알림 검색 기능 구현

1.효과 도:

2.실현 과정: 
 생각: 


3.부분 코드:
html:

 <div id="searchbox">
  <div><input type="text" id="txtTitle" /></div>
  <div id="btnSelect"><a href="javascript:;">Google</a></div>
 </div>
 <div id="dtitles"></div>  
css 코드: 

* {
 padding:0px;
 margin:0px;
}

#searchbox {
 margin-top:10px;
 height:37px;
 width:550px;
}
#searchbox div {
 float:left;
} 
#txtTitle {
 height:35px;
 width:440px;
 line-height:35px;
 border:solid 1px #4791FF;
}
#btnSelect a{
 width:100px;
 height:37px;
 background:#167ED9;
 display:block;
 line-height:37px;
 color:#ffffff;
 text-align:center; 
}
a:link {
 text-decoration:none;
}
a:hover {
 cursor:pointer;
}
#dtitles {
 width:540px;
 height:90px;
 border:solid 1px #CCCCCC;
 display:none;
 font-size:12px;
}
.li1 {
 background:#F0F0F0;
}
js 코드: 

$(function ()
{ //1. , $("#txtTitle").keyup(function () { //2. , var title = $.trim($("#txtTitle").val()); //3. , ajax $.post("/Handler3.ashx", { "title": title }, function (data) { if (title == "") { $("#dtitles").hide(); } else { // div, $("#dtitles").show().html(""); if (data == "") { $("#dtitles").text(" !"); } else { $("#dtitles").append(data); //4. , $("li").hover(function () { $(this).addClass("li1"); }, function () { $(this).removeClass("li1"); }); } } }); }); });
ajax:

public void ProcessRequest(HttpContext context)
  {
   //1.      ,     
   string title=context.Request.Form["title"];
   //2.    sql  
   string strsql = string.Format("select top 5 title from RNews where Title like '%{0}%' ",title);
   //3.   sql      ?
   DataTable dt = SqlHelper.ExecuteDataSetText(strsql,null).Tables[0];
   //4.             ,       
   StringBuilder sb = new StringBuilder();
   //4.1     sql         
   if (dt.Rows.Count > 0)
   {
    //4.1.1
    sb.Append("<ul>");
    for (int i = 0; i < dt.Rows.Count; i++)
    {
     sb.Append(string.Format("<li>{0}</li>", dt.Rows[i][0].ToString()));
    }
    sb.Append("</ul>");
   }
   context.Response.Write(sb.ToString());
  }

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기