1

我想在 jquery mobile 的列表视图中使用一些可折叠元素。我可以很好地设置可折叠在相应的内部添加

  • 部分,但是当可折叠未折叠时,可折叠信息不在可折叠气泡内,我该如何解决这个问题以拥有包含标题和描述的气泡?

    谢谢

    <div id="dispositivo" data-role="page" data-theme="c" data-cache="refresh">
    <div data-role="content" role="main">
            <ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="b">
                <li data-role='list-divider'>Titulo</li>
                <form id="form_disp" name="form_disp" method="post" action="test.php"> 
                    <li data-role='fieldcontain'>
                        <a id="estado" name="estado" href="#" data-theme="b" data-role="button" data-inline="true">Boton</a>                
                    <div data-role="content" data-inset="true">
                        <div data-role="collapsible" data-inset="true">
                            <h3>Info1</h3>
                            <p>Ahora estamos viendo el info 1</p>
                        </div>
                        <div data-role="collapsible">
                            <h3>Info 2</h3>
                            <p>Ahora estamos viendo el info 2</p>
                        </div>
                    </div>
                <button data-theme="b" id="b_conf_disp" data-role="button" data-inline="true" type="submit">Boton 2</button>
            </form>
            </ul>
        </div>      
    </div>
    
  • 4

    2 回答 2

    4

    我想你错过了</li>标签。

    于 2012-05-15T12:25:28.177 回答
    0

    对于类似的事情,您可以尝试使用我编写的插件,该插件允许在列表视图中内联打开某些列表视图项目。

    Github 仓库

    于 2013-06-12T15:41:46.083 回答