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
微信小程序組件間通訊(一).net