输入框input
input组件可以输入文本内容
只能输入单行文本
# 代码块中的方法
# void setValue(string value)给文本框写入数据
参数: value:字符串值
# 例如:
复制input_xxxxx.setValue('你好aiwork');
# string getValue()给文本框写入数据
返回值: 输入框中的文本
# 例如:
复制alert(input_xxxxx.getValue());
# 在ide中如何直接读写组件
直接使用hui组件通过id值获取对应组件,然后就可以操作组件了
# void setValue(string value)给文本框写入数据
例如:
复制hui.getInput("input_xxxxx").setValue('你好aiwork');
# void getValue()读取值
例如:
复制hui.getInput("input_xxxxx").getValue();
上次更新: 2024/11/03, 18:44:54