JQuery UI Accordion not working with AJAX loaded content

前端 未结 1 1202
长情又很酷
长情又很酷 2021-01-13 18:06

I am attempting to dynamically load a page of product info, that has an accordion menu for the user to browse. I bring in the content for the accordion dynamically using AJA

1条回答
  •  被撕碎了的回忆
    2021-01-13 18:18

    Two things, first you have an extra } at the end of your script.

    Second, the accordion content isn't loaded correctly because the accordion DOM elements are not yet loaded (they are loaded in your AJAX call), so put the following your SubMenuItemContent.php file:

    
    

    to init the accordion that is loaded.

    Alternatively you could try moving the accordion() call inside your success callback like so:

    success: function(result) {
     menuItemContent.html(result);
     $('.accordion').accordion({
      heightStyle: "content",
      active: false,
      collapsible: true
     });
    }
    

    But I've had more success with the previous method, for whatever reason.

    0 讨论(0)
提交回复
热议问题