菜单切换
FACESOHO知行者
心灵
记录
远方
赞赏工具
源代码:
点击运行
保存
<span class="marked">@{var price=25;}<br></span><html><br><body><br> <span class="marked">if (price>=30)<br> {<br> <p>The price is high.</p><br> }<br> else if (price>20 && price<30) <br> {<br> <p>The price is OK.</p><br> }<br> else<br> {<br> <p>The price is low.</p><br> }</span><br></body><br></html><br>
运行结果
The price is OK.