使用 JqueryMobile 将 listView 插入另一个 listView

发布于 2024-10-14 17:45:02 字数 1029 浏览 4 评论 0原文

我想将一个listView放入另一个listView中。是否可以?我尝试了这段代码,但它不起作用:

<ul data-role="listview">
    <li>
          <img src="assets/img/reception.png" alt="reception" class="ui-li-icon" />
          <a href="webmail/inbox">Boîte de r&eacute;ception</a>
    </li>
    <li class="dossiers" data-role="collapsible" style="padding:0; border-width:0;">
          <h3 style="margin:0;">Dossiers</h3>
          <ul data-role="listview" data-inset="true" data-theme="d">
               <li><a href="index.html">Dossier 1</a></li>
               <li><a href="index.html">Dossier 2</a></li>
               <li><a href="index.html">Dossier 3</a></li>
           </ul>
     </li>
</ul>

使用此代码片段,我的按钮“Dossiers”消失了。然后,如果我注释

  • 中的
      部分,该按钮将重新出现。
  • 有什么想法吗?

    谢谢 !!

    PS:抱歉我的英语不好,我是法国人。

    I would like to put a listView into another listView. Is it possible? I tried this code but it doesn't work :

    <ul data-role="listview">
        <li>
              <img src="assets/img/reception.png" alt="reception" class="ui-li-icon" />
              <a href="webmail/inbox">Boîte de réception</a>
        </li>
        <li class="dossiers" data-role="collapsible" style="padding:0; border-width:0;">
              <h3 style="margin:0;">Dossiers</h3>
              <ul data-role="listview" data-inset="true" data-theme="d">
                   <li><a href="index.html">Dossier 1</a></li>
                   <li><a href="index.html">Dossier 2</a></li>
                   <li><a href="index.html">Dossier 3</a></li>
               </ul>
         </li>
    </ul>
    

    With this snippet, my button "Dossiers" disappears. Then if I comment the part<ul> in the <li>, the button re-appears.

    Any idea ?

    Thanks !!

    Ps: Sorry for my bad English, I'm French.

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

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

    发布评论

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

    评论(1

    年华零落成诗 2024-10-21 17:45:02

    对我来说看起来像是一个 JQM bug。

    尝试不使用 data-role="collapsible" ,如果有帮助 - 将 div 放入 li 中并赋予其角色。

    还可以尝试将内部列表视图包装在 div 中。

    [编辑]

    JQM alpha3 今天发布。看看它是否能解决您的问题。

    Looks like a JQM bug to me.

    Try without data-role="collapsible" and if it helps - put a div inside the li and give it the role.

    Also try wrapping the inner listview in a div.

    [edit]

    JQM alpha3 was released today. See if it fixes your problem.

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