求一个ASP.NET下JQuery实现Ajax的例子

 我来答
古城杂货铺
2010-10-21
知道答主
回答量:21
采纳率:0%
帮助的人:17.7万
展开全部
<script src="/mvcajax/Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
//execute when the DOM has been loaded
$(document).ready(function () {
//wire up to the form submit event
$("form.hijax").submit(function (event) {
event.preventDefault(); //prevent the actual form post
hijack(this, update_sessions, "html");
});
});

function hijack(form, callback, format) {
$("#indicator").show();
$.ajax({
url: form.action,
type: form.method,
dataType: format,
data: $(form).serialize(),
completed: $("#indicator").hide(),
success: callback
});
}

function update_sessions(result) {
//clear the form
$("form.hijax")[0].reset();
$("#comments").append(result);
}

</script>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友36370a4
2010-10-21 · TA获得超过321个赞
知道小有建树答主
回答量:636
采纳率:0%
帮助的人:461万
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式