我有类似this的内容。
问题:如何在新窗口中停用Home
和Profile
个标签?
答案 0 :(得分:2)
解决方案非常简单:添加oncontextmenu ="返回false;"到ul元素。
<ul class="nav nav-tabs" oncontextmenu="return false;">
<li class="active"><a href="#home" data-toggle="tab">Home Tab</a></li>
<li><a href="#profile" data-toggle="tab">Profile Tab</a></li>
</ul>
答案 1 :(得分:0)
您可以禁止链接执行任何操作:
$('#view-modal-nav a').click(function(event){
event.preventDefault();
//handle your code here
});
答案 2 :(得分:0)
尝试使用此
$('#view-modal-nav a').click(function (e) {
e.preventDefault(); //Prevents Opening of Links
$(this).tab('show'); //Shows the Corresponding tab
});