|
发表于 2011-7-11 12:57:07
|
显示全部楼层
还不知道Axure 有函数,哪里全面的函数介绍?
一穷二白 发表于 2011-6-1 08:41 
21# 一穷二白
+ : Addition. 例如[[LVAR1 + LVAR2]]
- : Subtraction. 例如[[LVAR1 - 5]]
/ : Division. 例如[[LVAR1 / 4]]
* : Multiplication. 例如[[LVAR1 * 0.25]]
LVAR.toFixed(decimalPoints): 精确小数点几位 formats the value to use a specified number of places after the decimal. 例如 LVAR1 is 3.1415926, [[LVAR1.toFixed(2)]] 为 3.14.
LVAR.substring(from, to):截取某段字符 returns the characters from a string, between the start index (“from”) and the end index (“to). 例如 LVAR1 是 “Bill Haverchuck”, [[LVAR1.substring(2,10)]] 为 “ll Haver”.
LVAR.length: returns the length of a string.字符长度 例如 LVAR1 是 “Lindsay Weir”, [[LVAR1.length]] 为12.
LVAR.toLowerCase(): 转换为小写 例如[[LVAR1.toLowerCase()]]
LVAR.toUpperCase():转换为大写 例如[[LVAR1.toUpperCase()]]
LVAR.toString(): 转换为字符. 例如数字 LVAR1 is 09, [[LVAR1]] 是 9, 但[[LVAR1.toString()]] 是"09".
参考资料:
[PPT]Axure6主要功能教程.zip
(1.08 MB, 下载次数: 27)
|
|