无法使用jquery进行Ajax调用

时间:2011-05-05 20:09:04

标签: ajax jquery

我正在尝试使用jQuery Ajax从我的JSP调用Sample API,但我没有获得成功。我不知道我错在哪里,但即使简单的html页面也没有加载。

这是我的代码。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
    "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
Hello
<div id="temp">

<a href="#" onclick="callGetApplicationDetails();" >Click Here</a>

</div>
<script type="text/javascript">
function callGetApplicationDetails()
{
    $.ajax({
        url:"serverFile.jsp",
        type: "GET",
        dataType:'html',
        async: true,
        data:data,
        success: function(responseData) {
            if (responseData != null && callback != null) {

            alert('success');

            $('#temp').html(responseData);


            }
        },
        error: function(){

            alert('error');

            if (errorCallback !=null) errorCallback();
        }
    });     
    }

</script>

</body>
</html>

即使警报没有出现成功和失败。enter image description here

请帮助。

感谢 Hemish

1 个答案:

答案 0 :(得分:1)

我建议您使用firebug,并检查请求是否已发送到服务器。