多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
~~~ .item { hover-on! : ele = $1( input.url ) , ele:empty == true ? (self.value = "empty") # (self.value = "filled"), ele:hover = true, self::width = ele.box-content-width(), self.$(.icon) -> @(ele) ele::background = "#CCC" ; } ~~~ 上面加红的部分其实是定义了一个匿名函数. 对于一般的函数, 定义的格式如下: ~~~ foo = @( a, b ) c = a + b, return c AAuto中类似的定义函数的代码如下: foo = function( a, b ){ c = a + b; return c; } ~~~ 调用时使用 foo(12, 35) 即可.