我在 jQuery 数据模板中有以下 HTML:
<a class="comment" style = "text-decoration:underline" href="ItemTitle/${Application.ApplicationId}/${Application.ApplicationName}/${DomainObjectId}/${DomainObjectPropertyNameFormatted}">${DomainObjectPropertyValue}</a>
如上所述,模板在 ItemTitle 视图上呈现并生成一个 URL,该 URL 将所有 URL 元素附加到它。如果我在“ItemTitle”之前添加一个“/”,它将转到根 IIS 网站。我不能使用像 Html.ActionLink 这样的 html 帮助程序,因为模板仅在页面加载后才呈现。
如何让它导航到正确的 URL?