1

我正在尝试以编程方式折叠一个简单的可折叠

Javascript:
$( ".nuovoPaziente" ).trigger( "collapse" );

Html:
<div data-role="collapsible" data-collapsed="false" data-theme="b" id="nuovoPaziente">
</div>

但它不起作用。我有最新的 jquery 移动库 1.1.1。我确定执行到达触发代码,因为在检查它是否到达执行代码之前我有一个警报。任何的想法?^^

4

1 回答 1

2

ID在可折叠的定义中使用了一个:

<div data-role="collapsible" data-collapsed="false" data-theme="b" id="nuovoPaziente">

所以,它应该是#nuovoPaziente

$( "#nuovoPaziente" ).trigger( "collapse" );

.nuovoPaziente与 a 相关class;所以如果你想保持这个约定,你将不得不将你的可折叠修改为这样的:

$( ".nuovoPaziente" ).trigger( "collapse" );

<div data-role="collapsible" data-collapsed="false" data-theme="b" class="nuovoPaziente">


以下示例对我有用:

JS / jQuery:

$(function() {
    $("#collapse").click(function() {
        console.log("ok");
        $( "#nuovoPaziente" ).trigger( "collapse" );
    });
});

HTML:

<body>
    <div data-role="page">
        <div data-role="content">

            <div data-role="collapsible" data-collapsed="false" data-theme="b" id="nuovoPaziente">
                <h3>I'm a header</h3>
                <p>I'm the collapsible content. By default I'm closed, but you can click the header to open me.</p>
            </div>

            <button id="collapse">collapse!</button>
        </div>
    </div>  
</body>

我按如下方式调用库:

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile.structure-1.1.0.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />

<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>   
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>

你可以试试上面的例子。

希望这可以帮助。让我知道你的结果。

于 2012-09-21T08:38:59.147 回答