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) {
}
});
}
});
タブがクリックされるたびにタブがリモートコンテンツを再度ロードしないようにするにはどうすればよいですか。