zoukankan      html  css  js  c++  java
  • ajax xml对象(比较少用,一般用json)


    <%
    @ page language="java" pageEncoding="utf-8" %> <!DOCYPE Html> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <title>ajaxXml!!!</title> <script type="text/javascript"> function show(){ //获得ajax对象 var ajax; if(window.XMLHttpRequest){ ajax=new XMLHttpRequest(); }else if(window.AtiveXObject){ ajax=new AtiveXObject("Msxm12.XMLHTTP"); } //复写ajax.onreadystatechange ajax.onreadystatechange=function(){ if(ajax.readyState==4){ if(ajax.status==200){ //获得xml对象 var result=ajax.responseXML; alert(result.getElementsByTagName("name")[0].innerHTML); } } } //请求发送到servlet //ajax.open("get","ajaxXml"); //请求发送到xml.jsp ajax.open("get","xml.jsp"); ajax.send(null); } </script> <style type="text/css"> #div{ border:solid 2px; width:200px; height:100px; } </style> </head> <body> <div id="div"> <input type="button" value="show" onclick="show()" /> </div> </body> </html>
    <%@ page language="java" contentType="text/xml; charset=utf-8" pageEncoding="utf-8" %>
    <user>
        <uid>1</uid>
        <name>张三</name>
        <price>11.11</price>
    </user>
    public class AjaxXml extends HttpServlet{
        @Override
        public void service(HttpServletRequest request,HttpServletResponse response) throws IOException {
            request.setCharacterEncoding("utf-8");
            response.setCharacterEncoding("utf-8");
            response.setContentType("text/XML;charset=utf-8");
            response.getWriter().write("<user><uid>1</uid><name>张三</name><price>11.11</price></user>");
            System.out.println("test");
        }
    }
    public class AjaxXml extends HttpServlet{
        @Override
        public void service(HttpServletRequest request,HttpServletResponse response) throws IOException {
            request.setCharacterEncoding("utf-8");
            response.setCharacterEncoding("utf-8");
            response.setContentType("text/XML;charset=utf-8");
            response.getWriter().write("<user><uid>1</uid><name>张三</name><price>11.11</price></user>");
            System.out.println("test");
        }
    }
  • 相关阅读:
    King's Quest
    Prince and Princess
    Strongly connected
    线性渐变--linear-gradient
    镜像渐变-radio-gradient
    宽度自适应-左右
    宽度自适应-左中右
    HTML5 视频规范简介
    SVG格式
    Html5新标签解释及用法
  • 原文地址:https://www.cnblogs.com/lastingjava/p/9898647.html
Copyright © 2011-2022 走看看