如何给子元素绑定事件执行事件函数获取父元素的的属性?我通过给父元素也绑定一个事件,获取属性,用时间冒泡的机制实现,结果发现会先执行子元素的事件函数,然后才会执行父元素的,无奈只能放弃: getparentId:function(e){ this.setData({ parentId: e.currentTarget.id }) console.log('先') }, label_check: function (e) { console.log("后") // app.checked({ // that:this, // checkObj: this.data.screen_detail_list[this.data.parentId].list[index].checked, // str: "screen_detail_list[" + this.data.parentId+"].list["+index+"].checked" // }) },先运行子元素事件:
添加回答
举报
0/150
提交
取消