在ASP.NET开发中,时常会遇到提交按钮是带有postback的,页面会自动给按钮生成类似onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$main$[......]
标签:asp.net, jQuery, postbackArchive for the ‘开发’ Category
利用jQuery给带有postback的asp:button添加前置onclick事件
星期三, 01月 18th, 2012jQuery扩展之TAB切换
星期日, 01月 1st, 2012jQuery.ajax获取远程页面中部分内容时应使用filter()进行筛选
星期四, 12月 22nd, 2011
$.ajax({
url: remoteContent,
success: function(data) {
$("body").html($(data).filter("#remoteContent").html());
}
});[......]