jquery 를 사용 하여 간단 한 ajax 구현

1757 단어 jqueryajax
-->html 페이지

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
      <title> </title>
      <script src="../js/jquery-1.7.2.js" type="text/javascript"></script>
      <script src="../js/verify.js" type="text/javascript"></script>
  </head>
  <body onload="verify()">
  jax
  <!--ajax , -->
  <input type="text" value="" id="userName" />&nbsp;
  <input type="button" value=" " onclick=""/>
  <!-- , -->
  <div id="result"></div>
  <!--div is block,but span is inline--->
  </body>
  </html>
―>js 페이지

function verify() {
      $("#userName").keyup(function () {
          var user = $(this).val();
          var userobj = $(this);
          $.post("../index.aspx", { userobj: user }, callback);
      });

  }
  function callback(data) {
      $("#result").text(data);
  }
―>aspx 페이지

<%
  Response.Clear();
  string str_name = Request["userobj"];
  if (str_name == "xtyang")
  {

      Response.Write("ok");
  }
  else
  {
      Response.Write("no");
  }
  Response.End();     
  %>

좋은 웹페이지 즐겨찾기