Descrição
Quando um hiperlink é definido na lista, ele é denominado como um botão.
Exemplo
O exemplo a seguir demonstra o uso de lista vinculada no 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 Linked Example</h2>
<ul data-role = "listview">
<li><a href = "#">Chennai</a></li>
<li><a href = "#">Bangalore</a></li>
<li><a href = "#">Pune</a></li>
<li><a href = "#">Mumbai</a></li>
<li><a href = "#">Delhi</a></li>
</ul>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -