@if statement

Source: Internet
Author: User
Tags end expression
Statement

Conditionally executes a set of statements based on the value of an expression.

@if (
  condition1

)
   text1

[@elif (
  condition2

)
   text2]
[@else

text3]
@end

Parameters

Condition1, Condition2

Options available. An expression that can be cast to a Boolean expression .

Text1

Options available. The text to parse when condition1 is true .

Text2

Options available. The text to parse when Condition1 is false and condition2 is true .

Text3

Options available. The text to parse when both condition1 and condition2 are false .

Description

When writing @if statements, you do not have to place each clause in a different row. You can use multiple @elif clauses. However, all @elif clauses must appear before the @else clause.

@if statements are typically used to determine which of several options should be used for text output. For example:

alert(@if (@_win32)@else@end)

Requirements

Version 3

Please see

Conditional Compilation | conditional Compilation Variables | @cc_on Statement | @set Statement



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.