148  
查询码:00000969
微信小程序selectComponent获取自定义子组件
来源:https://my.oschina.net/tianma3798/blog/2247088?tdsourcetag=s_pctim_aiomsg
作者: 朱凡 于 2020年02月22日 发布在分类 / FM组 / FMWechat 下,并于 2020年02月22日 编辑
程序 组件

微信小程序selectComponent获取自定义子组件

微信小程序中父组件获取子组件对象方法

1.selectComponent,返回选择器的第一个组件

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();


 推荐知识

 历史版本

修改日期 修改人 备注
2020-02-22 10:49:47[当前版本] 朱凡 创建版本

  目录
    知识分享平台 -V 4.8.7 -wcp