El método building isLastItem() se usa para verificar si el elemento del menú es su último elemento o no, devuelve el valor booleano correspondiente.
Sintaxis:
$(".selector").menu( "isLastItem" );
Enfoque: Primero, agregue los scripts jQuery UI necesarios para su proyecto.
<enlace href = «https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css» rel = «hoja de estilo»>
<script src = «https://code. jquery.com/jquery-1.10.2.js”></script>
<script src = “https://code.jquery.com/ui/1.10.4/jquery-ui.js”></script>
Ejemplo: En este ejemplo, implementaremos el método isLastItem().
HTML
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <link href= "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet"> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> <script src="https://code.jquery.com/ui/1.10.4/jquery-ui.js"> </script> <style> .ui-menu { width: 200px; } </style> <script> $(function() { var menu = $("#gfg").menu(); $("#gfg").menu() }); function chck() { var a = $("#gfg").menu("isLastItem"); console.log(a) } </script> </head> <body> <h1>jQuery UI | menu isLastItem method</h1> <ul id="gfg"> <li><a href="#" onclick="chck()">Menu</a> <ul> <li><a href="#" onclick="chck()"> Submenu </a></li> </ul> </li> <li><a href="#" onclick="chck()">Menu</a> <ul> <li><a href="#" onclick="chck()"> Submenu </a></li> <li><a href="#" onclick="chck()"> Submenu </a></li> </ul> </li> </ul> </body> </html>
Salida: en la consola podemos ver el valor booleano correspondiente a cada elemento del menú.