我正在使用 ajax 在选项卡选择上呈现用户控件。
$("#tabs").tabs({
ajaxOptions: { cache: true },
spinner: 'Loading ...',
cache: true,
select: function(event, ui) {
var text = $(ui.tab).text();
$.ajax({
type: "POST",
url: "abc.aspx/GetData",
data: "{'tabType':'" + text + "'}",
cache: true,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(response) {
$('#tabsResult').html(response.d);
},
failure: function(msg) {
}
});
}
});
如何防止选项卡在每次单击选项卡时再次加载远程内容。