InteractiveButton.offTap收藏我的收藏
收藏
我的收藏基础库 2.46.0 开始支持本方法,这是一个同步方法。
注销按钮点击回调事件。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 | 无 |
相关教程 | 无 |
语法
InteractiveButton.offTap(callback)
参数说明
callback
类型 | 默认值 | 必填 | 说明 | 最低支持 版本 |
---|---|---|---|---|
function | 是 | 监听事件的回调函数 | 2.46.0 |
返回值
无
扫码体验
请使用字节宿主APP扫码
代码示例
点击按钮后解绑事件
let params = { type: "text", text: "text button", style: {}, success(button) { function button_tap(res) { console.log(res.buttonid); button.offTap(button_tap); } button.onTap(button_tap); }, fail(res) { }, }; tt.createInteractiveButton(params);
点击纠错