| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2213 人关注过本帖
标题:ajax问题(急求助)
取消只看楼主 加入收藏
windful1000
Rank: 1
等 级:新手上路
帖 子:21
专家分:0
注 册:2006-2-23
收藏
 问题点数:0 回复次数:0 
ajax问题(急求助)
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
   
    <title>提取index.jsp的数据</title>
   
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">   
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
   <style type='text/css'>
    * { font-family: Tahoma, Arial, sans-serif; }
    #divId{ color: #48f; }
  </style>    
<script type="text/javascript">
   var XMLHttpReq;
   function createXMLHttpRequest(){
    if(window.XMLHttpRequest)
   XMLHttpReq = new XMLHttpRequest();
  else if(wondow.ActiveXObject)
    XMLHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
}

 function chuli(){
  if(XMLHttpReq.readyState == 4){
    if(XMLHttpReq.status == 200 || XMLHttpReq.status == 0){
        var divInfo = document.getElementById("divId");
        if(responseDataType != "Text")
           divInfo.innerHTML = XMLHttpReq.responseXML;
        else
           divInfo.innerHTML = XMLHttpReq.responseText;
    }else{
      window.alert("你所请求的页面有异常");
     }
  }
 }

 function lianjie(){
  var url="index.jsp";
  createXMLHttpRequest();
  XMLHttpReq.onreadystatechange = chuli;
  XMLHttpReq.open("GET",url,true);
  XMLHttpReq.send(null);
}  
</script>
  <!--
  <script type="text/javascript" src="prototype.js"/>
  <script type="text/javascript">
  window.onload=function(){
    new Ajax.Request(
      "index.jsp",
      {
              method:"post",
        onComplete:function(xhr){
          $('divId').innerHTML = xhr.responseText;
  }
    }
    );
 } ;  
  </script>
   -->
  </head>
  
  <body onLoad=lianjie();>
    <div id="divId">
        
    </div>
  </body>
</html>


index.jsp页面里有数据
可是我的这个页面取不到数据是什么原因啊
搜索更多相关主题的帖子: ajax 
2008-01-11 15:49
快速回复:ajax问题(急求助)
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.012810 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved