欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用jquery实现简单的ajax

程序员文章站 2022-05-18 17:32:58
-->html页 . 代码如下:

-->html页

. 代码如下:


<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
  <html xmlns="https://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" /> 
  <input type="button" value="提交" onclick=""/>
  <!--预留空间,显示结果-->
  <p id="result"></p>
  <!--p is block,but span is inline--->
  </body>
  </html>


—>js页

. 代码如下:


function verify() {
      $("#username").keyup(function () {
          var user = $(this).val();
          var userobj = $(this);
          $.post("../index.x", { 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();     
  %>