gpt4 book ai didi

asp.net - 简单的 ajax 调用不适用于按钮单击

转载 作者:行者123 更新时间:2023-12-01 11:52:06 24 4
gpt4 key购买 nike

我正在使用 Encosia's从他的网站上获取有关如何使用 ajax 调用的示例

当我点击 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

最佳答案

最有可能发生的是 - 按钮提交页面,因此页面被重新加载。我以前在某些浏览器中遇到过这个问题。您需要指定 type="button" 属性。

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

关于asp.net - 简单的 ajax 调用不适用于按钮单击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10567951/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com