附加到可折叠元素的内容出现问题

发布于 2024-10-26 02:55:40 字数 597 浏览 1 评论 0原文

我在页面上有一个可折叠部分,一旦按下可折叠标题,我就会通过 ajax 调用附加更多元素。效果很好,出现进度条

$("div#showTicketForm").live("expand", function() {

 if (!isFormLoaded) {
      $.mobile.pageLoading();             
      $.get(
          "",
          "page=form&id=${id}&sub=${sub}",
          函数(数据){
              $("div#showTicketForm").append(data).page();
              isFormLoaded = true;
              $.mobile.pageLoading(true);
      });         
  }   

});

问题是,单击标题时添加的内容不会折叠。

如何才能做到这一点?

I have a collapsable section on a page to which I append more elements with an ajax-call, once the collapsable header is pressed. That works fine, the progress bar appears

$("div#showTicketForm").live("expand", function() {

  if (!isFormLoaded) {
      $.mobile.pageLoading();             
      $.get(
          "<c:url value='/Controller' />",
          "page=form&id=${id}&sub=${sub}",
          function(data) {
              $("div#showTicketForm").append(data).page();
              isFormLoaded = true;
              $.mobile.pageLoading(true);
      });         
  }   

});

The problem is that, the added content does not collapse when clickign the header.

How can that be achieved?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

述情 2024-11-02 02:55:40

[编辑]

抱歉,我没有仔细阅读。您正在使用 .page :P

您的问题是一个元素不能被 .page 多次使​​用。您必须重新创建您称为 div#showTicketForm 的 div 或在其中创建一个新的 div。

[edit]

Sorry, I didn't read carefully. You are using .page :P

Your problem is that an element can't be .paged more than once. You have to either recreate the div you refer to as div#showTicketForm or create a new div in it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文