码迷,mamicode.com
首页 > 微信 > 详细

微信小程序开发(二)点击事件

时间:2019-10-12 20:35:40      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:dex   微信   console   color   事件   alt   ndt   tap   属性   

接着上篇博客继续。

如下修改:

// index.wxml
<view>Hello World!</view>

<button bindtap="but">点击按钮</button>  // 按钮 bindtap属性就是添加点击事件,名字是but

// index.js
Page({
  but: function(){  // 通过but点击事件触发后面的函数
    console.log("你好")
  }
})

保存代码后,点击按钮效果如下:

技术图片

 

微信小程序开发(二)点击事件

标签:dex   微信   console   color   事件   alt   ndt   tap   属性   

原文地址:https://www.cnblogs.com/aaronthon/p/11663698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!