是否可以从LESS对象加载自定义函数?
我在我的网站上使用less.js
(我需要更新一些变量值,我尝试使用modifyVars
)。
我有这个功能:
// Get number of elements
getchilds(selector) {
return jQuery(selector.value).length;
}
这是我尝试在LESS文件中使用的代码:
@items = 1; // define a start value
.col-canvas {
@items : getchilds('#eureka .col-canvas');
& when (@items = 0){
@items : 1;
}
width: ( 100% / @items );
}
是否可以将函数返回的值赋给var?
Crunch 2在这一行显示错误:
width : ( 100% / @items );