谁知道下面代码什么意思
<script>
$(function(){
$('#myTabs a').click(function (e) {
$(this).tab('show')
});
})
</script>
菜鸟教程上有这个的具体功能的例子
http://www.runoob.com/bootstrap/bootstrap-tab-plugin.html
将多个标签分别写在ul的li的a元素中。点击该元素下的链接,即可显示对应标签页。