JQuery UI Tabs caching

前端 未结 4 1267
不思量自难忘°
不思量自难忘° 2020-12-09 06:18

I am working in an ASP .net MVC Application. I have a JQuery UI tab whose Javascript to enable caching is as follows.

function LoadStudentDetailTabs() {
            


        
4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-09 07:06

    Try this

    $(document).ready(function(){
      $("#tabs").tabs({
        spinner: 'Loading...',
        cache: false,
        ajaxOptions: {cache: false}
      });
    });
    

提交回复
热议问题