html 内联IF语句Umbraco 7.html
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 内联IF语句Umbraco 7.html相关的知识,希望对你有一定的参考价值。
<form id="sideForm" class="@(CurrentPage.DocumentTypeAlias == "pageAlias" ? "hidemobile" : "")" method="POST" action="@formAction">
<!-- If An Image Is Present Use It, Otherwise Use A Colour -->
<section class="hero hero-home text-center background-cover" style="@(selection.HasValue("backgroundImage") ? "background-image: url('"+ Umbraco.Media(selection.backgroundImage).Url +"');" : "background-color: #000000;")">
Assigning a variable
//new
string subject = (CurrentPage.emailSubject != "") ? CurrentPage.emailSubject : "Website contact form submission";
//old
var subject = "";
if (CurrentPage.emailSubject != "")
{
subject += CurrentPage.emailSubject;
}
else
{
subject += "Website contact form submission";
}
以上是关于html 内联IF语句Umbraco 7.html的主要内容,如果未能解决你的问题,请参考以下文章
刀片内联 if 和 else if 语句
是否可以在 HTML 中为刀片模板编写 IF 内联
内联 If 语句 - 短路
内联中的多个语句 if
python3中带有内联赋值的if语句(赋值表达式)
如何使用 ? : 带有 Razor 和内联代码块的 if 语句