This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //jade 通过缩进行条件判断,所以需要使用三元表达式进行简单的class添加 | |
| ul.ul-con(class=isAdd?'add':'disadd') | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var v='Hello World'; | |
| (function(){ | |
| alert(v); | |
| var v='I love you'; | |
| })() | |
| var v='Hello World'; | |
| (function(){ | |
| var v; | |
| alert(v); |
NewerOlder