Descrição
Em vez de usar links dentro da barra de navegação, você também pode usar elementos de botão.
Exemplo
O exemplo a seguir demonstra o uso de navbar com botão no jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<title>Navbars with button elements</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 = "navbar" data-iconpos = "left">
<ul>
<li><button data-icon = "star">Button One</button></li>
<li><button data-icon = "arrow-l" data-theme = "b">Button Two</button></li>
<li><button data-icon = "arrow-r">Button Three</button></li>
</ul>
</div>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -