3

私は、ajax呼び出しの使用方法について、彼のWebサイトからEncosiaのサンプルを使用しています

divをクリックすると正常に動作し、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
4

1 に答える 1

5

おそらく発生するのは、ボタンがページを送信するため、ページがリロードされることです。以前、一部のブラウザでこの問題が発生しました。type="button"属性を指定する必要があります。

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

于 2012-05-12T22:47:48.267 に答える