当前位置:   article > 正文

微信小程序的常用事件的用法_微信小程序超链接点击事件

微信小程序超链接点击事件

微信小程序中,事件绑定是非常常见的操作。以下是一些常用事件的具体用法和示例:

1. bindtap 或 catchtap

点击事件,当用户点击某个元素时触发。

html
<!-- WXML 文件 -->
<view bindtap="handleTap">点击我<iew>
  • 1
  • 2
  • 3
javascript
// JS 文件
Page({
  handleTap() {
    wx.showToast({
      title: '你点击了这个元素',
      icon: 'none'
    });
  }
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

2. bindinput 或 catchinput
输入事件,当用户在输入框中输入内容时触发。

html

javascript
// JS 文件
Page({
  handleInput(event) {
    console.log('输入的内容:', event.detail.value);
  }
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  1. bindchange 或 catchchange
    选择改变事件,当用户选择不同的选项或切换开关状态时触发。
html
<!-- WXML 文件 -->
<picker mode="selector" range="{{array}}" bindchange="handleChange">
  <view class="picker">
    当前选择:{{index}}
  <iew>
</picker>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
javascript
// JS 文件
Page({
  data: {
    array: ['选项1', '选项2', '选项3'],
    index: 0
  },
  handleChange(event) {
    this.setData({
      index: event.detail.value
    });
  }
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  1. bindsubmit 或 catchsubmit
    表单提交事件,当用户提交表单时触发。
html
<!-- WXML 文件 -->
<form bindsubmit="handleSubmit">
  <input name="input" placeholder="请输入内容"/>
  <button formType="submit">提交<tton>
</form>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
javascript
// JS 文件
Page({
  handleSubmit(event) {
    console.log('表单数据:', event.detail.value);
  }
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  1. bindscroll 或 catchscroll
    滚动事件,当页面或组件滚动时触发。
html
<!-- WXML 文件 -->
<scroll-view bindscroll="handleScroll" scroll-y style="height: 300px;">
  <view wx:for="{{array}}" wx:key="*this">{{item}}<iew>
</scroll-view>
  • 1
  • 2
  • 3
  • 4
  • 5
javascript
// JS 文件
Page({
  data: {
    array: Array.from({ length: 50 }, (_, i) => `项目 ${i}`)
  },
  handleScroll(event) {
    console.log('滚动位置:', event.detail.scrollTop);
  }
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  1. bindlongpress 或 catchlongpress
    长按事件,当用户长时间按住某个元素时触发。
html
<!-- WXML 文件 -->
<view bindlongpress="handleLongPress">长按我<iew>
  • 1
  • 2
  • 3
javascript
// JS 文件
Page({
  handleLongPress() {
    wx.showToast({
      title: '长按事件触发',
      icon: 'none'
    });
  }
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  1. bindanimationend 或 catchanimationend
    动画结束事件,当动画播放完毕时触发。
html
<!-- WXML 文件 -->
<view animation="{{animation}}" bindanimationend="handleAnimationEnd">动画元素<iew>
  • 1
  • 2
  • 3
javascript
// JS 文件
Page({
  onLoad() {
    const animation = wx.createAnimation({
      duration: 1000,
      timingFunction: 'ease',
    });
    this.animation = animation;
    animation.scale(2, 2).step();
    this.setData({
      animation: animation.export()
    });
  },
  handleAnimationEnd() {
    wx.showToast({
      title: '动画结束',
      icon: 'none'
    });
  }
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  1. bindload 或 catchload
    加载完成事件,当某个资源(如图片)加载完成时触发。
html
<!-- WXML 文件 -->
<image src="/path/to/image" bindload="handleImageLoad"/>
  • 1
  • 2
  • 3
javascript
// JS 文件
Page({
  handleImageLoad() {
    wx.showToast({
      title: '图片加载完成',
      icon: 'none'
    });
  }
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

总结

  1. bindtap 或 catchtap:点击事件,当用户点击某个元素时触发。
  2. bindinput 或 catchinput:输入事件,当用户在输入框中输入内容时触发。
  3. bindchange 或 catchchange:选择改变事件,当用户选择不同的选项或者切换开关状态时触发。
  4. bindsubmit 或 catchsubmit:表单提交事件,当用户提交表单时触发。
  5. bindscroll 或 catchscroll:滚动事件,当页面滚动时触发。
  6. bindlongpress 或 catchlongpress:长按事件,当用户长时间按住某个元素时触发。
  7. bindanimationend 或 catchanimationend:动画结束事件,当动画播放完毕时触发。
  8. bindload 或 catchload:加载完成事件,当某个资源加载完成时触发,例如图片加载完成。

以上仅是常见的一些事件,在实际开发中还有更多类型的事件可以使用。你可以根据具体的业务需求选择适合的事件,并在对应的元素上绑定相应的事件处理函数来实现交互逻辑。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/923692
推荐阅读
相关标签
  

闽ICP备14008679号