jQuery Mobile - Legenda recolhível
Descrição
Você pode exibir os elementos do formulário recolhíveis usando um conjunto de campos e uma legenda .
Exemplo
O exemplo a seguir demonstra o uso de formulários recolhíveis usando fieldset no jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<title>Collapsible Legend</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>
<form>
<fieldset data-role = "collapsible">
<legend>Legend</legend>
<label for = "text-basic">Text input:</label>
<input type = "text" name = "text-basic" id = "text-basic"
value = "" placeholder = "Input your text" />
<fieldset data-role = "controlgroup">
<legend>Select your favourite sport</legend>
<input type = "checkbox" name = "checkbox-1"
id = "checkbox-1" checked = "" />
<label for = "checkbox-1">Baseball</label>
<input type = "checkbox" name = "checkbox-2" id = "checkbox-2" />
<label for = "checkbox-2">Cricket</label>
<input type = "checkbox" name = "checkbox-3" id = "checkbox-3" />
<label for = "checkbox-3">Football</label>
<input type = "checkbox" name = "checkbox-4" id = "checkbox-4" />
<label for = "checkbox-4">Hockey</label>
</fieldset>
</fieldset>
</form>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -
Salve o código html acima como collapsible_legend.html arquivo na pasta raiz do servidor.
Abra este arquivo HTML como http: //localhost/collapsible_legend.html e a seguinte saída será exibida.