可以在listeners对象中监听事件
I will respondto a tap onany of my children!I am special!
'special.tap': 'specialTap'
这句话的意思是给id为special的元素单独指定一个tap事件。
除了通过这种方式,我们还可以这样。
this.listen(要添加事件的元素, 事件, 具体事件);
this表示最外层的元素,通过this.$可以获取id元素。
删除事件
this.unlisten(this.$.myButton, 'tap', 'onTap');