1. ホーム
  2. asp.net-mvc

[解決済み] 確認ダイアログでActionLinkを削除する

2022-12-26 23:19:21

質問

私は、シンプルな ActionLink を実装しようとしています。これは、私が今のところ持っているものです。

<%= Html.ActionLink("Delete", 
                    "Delete", 
                    new { id = item.storyId, 
                          onclick = "return confirm('Are you sure?');" 
                        })%> 

しかし、確認ボックスは表示されません。明らかに何かを見逃しているか、リンクを間違って構築しています。どなたか助けていただけませんか?

どのように解決するのですか?

混同しないように routeValueshtmlAttributes . おそらく このオーバーロード :

<%= Html.ActionLink(
    "Delete", 
    "Delete", 
    new { id = item.storyId }, 
    new { onclick = "return confirm('Are you sure you wish to delete this article?');" }) 
%>