jQuery Mobile - Contenuto formattato Listview
Descrizione
Utilizza i tag di intestazione e paragrafo per aggiungere contenuti nel formato gerarchico appropriato. Includi classeui-li-aside per aggiungere informazioni supplementari sul lato destro della voce di elenco.
Esempio
L'esempio seguente dimostra l'uso delle miniature nell'elenco in jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<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>
<h2>Listview Formatted Content Example</h2>
<ul data-role = "listview" data-inset = "true">
<li data-role = "list-divider">Wednesday, January 13, 2016
<span class = "ui-li-count">2</span></li>
<li><a href = "#">
<h2>John</h2>
<p><strong>Team Meeting</strong></p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p></a>
<p class = "ui-li-aside"><strong>12:48</strong>PM</p>
</li>
<li><a href = "#">
<h2>Albert</h2>
<p><strong>Updation of work</strong></p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p></a>
<p class = "ui-li-aside"><strong>4:01</strong>PM</p>
</li>
<li data-role = "list-divider">Thursday, January 14, 2016
<span class = "ui-li-count">2</span></li>
<li><a href = "#"><h2>Joy</h2>
<p><strong>New Project Information</strong></p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p></a>
<p class = "ui-li-aside"><strong>09:25</strong>PM</p>
</li>
</ul>
</body>
</html>
Produzione
Eseguiamo i seguenti passaggi per vedere come funziona il codice sopra:
Salva il codice html sopra come listview_formatted_content.html file nella cartella principale del server.
Apri questo file HTML come http: //localhost/listview_formatted_content.html e verrà visualizzato il seguente output.