js中的本地化字符串消息

Localized string message inside js

本文关键字:字符串 消息 本地化 js      更新时间:2023-09-26

我有类似的mvc actionLink

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

现在,我想把@Localized.AreYouSure字符串放在返回确认部分中。我该怎么做。

我想这就是你想要的/意思:

@Html.ActionLink("Delete", "Delete",
   new { id = item.Id },
   new { onclick = "return confirm('" + Localized.AreYouSure + "');" })