简单的Ajax调用不是按一下按钮工作(Simple ajax call not working wi

2019-09-17 04:18发布

我使用Encosia的从他的网站上如何使用Ajax调用示例

当我点击DIV它的正常工作,当我更换按钮,而不是股利它刷新整个页面,我没有找到在Firebug的任何错误。

这里是我的代码:

脚本:

<script type="text/javascript">
    $(document).ready(function () {
        // Add the page method call as an onclick handler for the div.
        $("#getdate").click(function () {
            $.ajax({
                type: "POST",
                url: "Default.aspx/GetDate",
                data: "{}",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                success: function (msg) {
                    // Replace the div's content with the page method's return.
                    $("#Result").html(msg.d);
                }
            });
        });
    });
</script>

HTML:

<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="True">
</asp:ScriptManager>
<div id="Result">Click here for the time.</div>
<button id="getdate" value="Click Me">ClickMe</button>

代码隐藏:

<WebMethod()> _
<ScriptMethod(ResponseFormat:=ResponseFormat.Json)>
Public Shared Function GetDate() As String
     Return DateTime.Now.ToString()
End Function

Answer 1:

什么最有可能发生的是 - 该按钮提交页面使页面重新加载得到。 我在一些浏览器这个问题之前。 您需要指定type="button"属性。

http://www.w3schools.com/tags/tag_button.asp



文章来源: Simple ajax call not working with button click