EasyClick易点云测 通过下标输入内容

2021/9/20 23:35:15

本文主要是介绍EasyClick易点云测 通过下标输入内容,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

/**
 * @author Mr_老冷 QQ1920712147
 * @description 通过下标输入内容
 * @param selector{S} 选择器
 * @param content{string} 输入内容
 * @param index{number?} 下标,从0开始,可空
 */
function inputTextEx(selector, content, index) {
    index = index || 0
    let nodes = selector.getNodeInfo(0)
    if (nodes) {
        if (nodes.length - 1 < index) index = nodes.length - 1
        return nodes[index].inputText(content)
    }
    return false
}


let slt = text("请输入")
//下标从0开始
inputTextEx(slt, "你想输入什么", 1)



这篇关于EasyClick易点云测 通过下标输入内容的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程