关于this._super

this._super() 可以调用父类的同名函数,那这个方法如何在带参数的函数里使用,例如 update(dt),试着写了this._super(dt),但报错了

我这是无意中触发了什么标签吗?字都变斜体了

很简单,很可能是你的父类里面并不包含 update 函数,检查一下父类的 prototype 就知道了。cc.Component 本身就不包含 update 函数