this.textinput_message.on(Laya.Event.CLICK,this,()=>{
console.log("CLICK>>>");
})
this.textinput_message.on(Laya.Event.MOUSE_DOWN,this,()=>{
console.log("MOUSE_DOWN>>>");
})
this.textinput_message.on(Laya.Event.FOCUS, this, () => {
console.log("FOCUS>>>");
});