当我使用jquery或javascript单击它时,我需要获取引导程序导航的名称。这就是一个简单的问题。
答案 0 :(得分:2)
我不确定name
的含义,但请尝试以下代码:
$('.navbar-nav').on('click', 'a', function(){
$(this).text(); //To get the display text
$(this).attr('name'); //if you mean attribute name
});
希望这有帮助。