微信小程序selectComponent獲取自定義子組件

1、微信小程序中父組件獲取子組件對象方法javascript

1.selectComponent,返回選擇器的第一個組件java

2.selectAllComponents,返回選擇器的組件列表小程序

參數爲選擇器。微信小程序

使用示例:微信

//根據ID獲取組件對象
    var showTwo = this.selectComponent('#myShow');
    //訪問屬性,使用data訪問內部屬性和組件屬性
    console.info(showTwo.data);
    //執行操做
    showTwo.innerAdd();

    //根據樣式獲取,建議使用selectAllComponents
    var showThree = this.selectComponent('.myShow');
    console.info(showThree.data);
    showThree.innerAdd();

 

更多:this

微信小程序組件間通訊(二)spa

微信小程序組件間通訊(一).net

小程序中的小數計算問題/浮點數計算問題code

相關文章
相關標籤/搜索