zoukankan      html  css  js  c++  java
  • javascript的ajax实例

    请求的页面: 

    <%@ page language="java" contentType="text/html;charset=gb2312"%>
    <html>
    <head>
    <title>ajax测试01</title>
    <script lanauge='javascript'>
    var xmlrequest;
    xmlrequest
    =false;
    function InitObject()
    {
    if(!xmlrequest)
    {
        xmlrequest
    =new ActiveXObject("Msxml2.XMLHTTP");//IE6.0的
        if(!xmlrequest)
        {
            xmlrequest
    =new ActionXObject("Microsof.XMLHTTP");//其他的IE
        //else
        //    xmlrequest=new XMLHttpRequest();//不是IE的
        }
    }
    }

    var url;
    function CallServer()
    {
    if(!xmlrequest)
        InitObject();

    if(xmlrequest)    
    {        
        url
    ="GetTime.jsp";
        xmlrequest.open(
    "GET",url,true);    
        xmlrequest.onreadystatechange
    =UpdatePage;
        xmlrequest.send(
    null);
    }
    }
    function UpdatePage()
    {
        
    if(xmlrequest.readyState==4//准备好了
        {
            
    var response=xmlrequest.responseText;
            document.getElementById(
    "labeltime").value=response;        
            
    //document.write(response);
        }
    }
    function RefreshTime()
    {
        CallServer();
    }
    function init()
    {
    CallServer();
    }
    </script>
    </head>
    <body onload="javascript:init()">
    <form name="frm1">
    <input type="text" name="labeltime" size=55>
    <input type="button" name="refresh" value="刷新" onclick="RefreshTime()">
    </form>
    </body>
    </html>

    响应的页面:

    <%@ page language="java" contentType="text/html;charset=gb2312"%>
    <%
        java.util.Date date
    =new java.util.Date();
        out.println(
    "现在时间是:"+date.toString());
    %>
  • 相关阅读:
    linux Apache 安装与配置
    从零开始的JAVA 2. java程序的构成及命名规则
    从零开始的JAVA 1. 安装 JAVA 与 设置环境变量
    通过系统光盘搭建本地yum仓库
    Linux网站服务Apache+php+mysql的安装
    PostgreSQL学习手册(常用数据类型)
    1.4、WebRTC源码
    1.3、WebRTC架构
    1.2、初识WebRTC
    必读前言—— 作者的独白
  • 原文地址:https://www.cnblogs.com/ringwang/p/1288480.html
Copyright © 2011-2022 走看看