Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
%ul.nav.nav-tabs %li.active %a{ :href => "#a", "data-toggle" => "tab" } %li %a{ :href => "#b", "data-toggle" => "tab" }
2番目のタブでjQueryクリック機能を呼び出すにはどうすればよいですか?
$('.nav-tabs li').eq(1).click(function(){alert("test")})
または、イベントを呼び出したいclick場合:
click
$('.nav-tabs li').eq(1).click()
$('#b').parent().click(function(){alert("test")});
これがあなたの言いたいことだと思います。