Descrição
O recolhível pode ser aninhado dentro de outro conteúdo recolhível.
Exemplo
O exemplo a seguir demonstra o uso de recolhível aninhado no jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<title>Collapsible nested</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role = "collapsible">
<h1>Click me</h1>
<p>This is collapsible content.</p>
<div data-role = "collapsible">
<h1>Click me</h1>
<p>This is nested collapsible content.</p>
</div>
</div>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -