我试图实现一个系统,我需要链接组列表中的按钮。问题是,当我点击按钮时,它会打开链接项的链接。 下面的代码就是我在我的系统上的代码。
编辑: 我需要完整的项目可点击;排除按钮(不在文本上仅使用链接)。
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<a class="list-group-item list-group-item-info" href="https://www.fumep.edu.br/eep/" target="_blank">
EEP
<span class="pull-right">
<div class="btn-group" role="group" aria-label="...">
<span class="btn btn-xs btn-warning" >
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>
</span>
<span class="btn btn-xs btn-danger" >
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
</span>
</div>
</span>
</a>
&#13;
答案 0 :(得分:0)
你可以像这样使用CSS ..
.list-group-item>.pull-right{
cursor: default;
}
将onclick="return false;"
添加到btn-group。
答案 1 :(得分:0)
如果你想要除按钮之外的全部项目可点击,你可以尝试使用jQuery
$('.btn-group .btn').click(function(
e.preventDefault();
});