ajax获取服务器时间

前端之家收集整理的这篇文章主要介绍了ajax获取服务器时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

简单的小练习

<head runat="server">
<title>获取服务器时间</title>
<script src="js/jquery-1.9.1.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$("#Button1").click(function () {
ajax知识点.WebService1.GetDateTime(onSuccess,onFailed);
})
function onSuccess(result) {
$("#divinfo").text(result);
}
function onFailed() {
$("#divinfo").text("获取服务器时间失败");
}
})
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
<Services>
<asp:ServiceReference Path="~/WebService1.asmx"/>
</Services>
</asp:ScriptManager>

<input id="Button1" type="button" value="获取服务器时间"/>
<div id="divinfo"></div>

</form>
</body>
</html>

当我点击“获取服务器时间”按钮时,下面弹出当前的事时间。

原文链接:https://www.f2er.com/ajax/166401.html

猜你在找的Ajax相关文章