代码之家  ›  专栏  ›  技术社区  ›  griegs

JSP Ajax发布到另一个JSP页面

  •  1
  • griegs  · 技术社区  · 14 年前

    <script language="javascript">
        function ClickMe_Click(){
            $.ajax({
                type: "post",
                url: "dimensionList.jsp",
                data: "dimensionName=Slappy",
                success: function(msg) {
                    alert(msg);
                }
                error: function(request,error){
                    alert(error);
                }
            });
            return false;
        }
    </script>
    <a href="." onclick="return ClickMe_Click() ;">Click Me</a>
    

    在我的 我有;

    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <%
        out.print("it works!");
    %>
    

    错误 这并没有什么帮助。

    4 回复  |  直到 9 年前
        1
  •  1
  •   Thilina Sampath Alexander    9 年前
    function ClickMe_Click(){
        $.ajax({
            type: "post",
            url: "dimensionList.jsp",
            data: {"dimensionName":"Slappy"},
            success: function(msg) {
                alert(msg.data);
            },
            error:function (xhr, ajaxOptions, thrownError){
                alert(xhr.status);
                alert(thrownError);
            }  
        });
        return false;
    }
    

    添加了下面指定的错误函数,查看发生了什么,还修复了数据,您丢失了 {}

        2
  •  1
  •   Aaron Anodide    14 年前

    是jquery吗?它支持error ajax事件和success。

        3
  •  1
  •   Aaron Anodide    14 年前

    如果仍然卡住,请尝试将其加载到Chrome中,然后在单击按钮之前,单击Developer->Developer Tools,然后单击Scripts,并设置断点。

        4
  •  0
  •   Thilina Sampath Alexander    9 年前

    function ClickMe_Click(){
        $.ajax({
            type: "post",
            url: "dimensionList.jsp",
            data: "dimensionName=Slappy",
            success: function(msg) {
                alert(msg.data);
            }
        });
        return false;
    }