小程序
小游戏
企业微信
微信支付
扫描小程序码分享
一个组件怎么才能绑定多个事件啊?这样 试了好几次都不行!!! 一个很大的数应该怎么表示呢?数字溢出 就显示null应该怎么解决!!!谢谢!!!
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
说说具体的应用场景啊,难道不能在点击的函数里调用多了其他方法吗?
大数的话可以用string来处理
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
多绑定个bindtouchstart或者bindtouchend
<view bindtap="tap" bindtouchstart="touchstart">点击我触发多个事件</view> tap(e){ console.log('tap', e) } touchstart(e){ console.log('touchstart', e) }
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人
多个view嵌套,每个view绑一个事件。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
说说具体的应用场景啊,难道不能在点击的函数里调用多了其他方法吗?
大数的话可以用string来处理
多绑定个bindtouchstart或者bindtouchend
<view bindtap="tap" bindtouchstart="touchstart">点击我触发多个事件</view> tap(e){ console.log('tap', e) } touchstart(e){ console.log('touchstart', e) }
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人
多个view嵌套,每个view绑一个事件。