使用Bootstrap按钮确认

时间:2016-09-19 03:55:20

标签: c# asp.net-mvc twitter-bootstrap razor

我跟随行动链接以及确认

<a onclick="return confirm('Are you Sure ?')" href="@Url.Action("Delete","Authers" , new { id = item.Auth_Id })"> Delete</a>

所以我想把它当作引导按钮所以我试着跟着

<button type="button" class="btn btn-danger btn-xs" onclick="return confirm('Are you Sure ?');location.href='@Url.Action("Delete","Authers" , new { id = item.Auth_Id })';return false;">Delete/button>

但是这个确认无法在这里工作

0 个答案:

没有答案