1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
tohex(variable, prefix*, length*) 将给定变量的内容转换为十六进制字符串。可用于创建html / CSS颜色字符串。 参数: •variable ◦变量名称. •prefix (可选) ◦设置转换后是字头(#或0x)的字符串。 •length (可选) ◦结果的固定长度. 样例: tohex(color,'#',6); set(color, ...an_external_integer_input...); tohex(color,'#',6); txtadd(layer[text1].css,'color:',get(color),';'); |