我跟随行动链接以及确认
<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>
但是这个确认无法在这里工作