微信小程序获取剪切板的内容到输入框中

xml代码



    

js代码

Page({
    data: {
     code:''
    },
    getClipboard:function(){
        var that = this
      wx.getClipboardData({
        success:function(res){
          wx.showToast({
            title: '剪贴板内容是:'+res.data,
            icon:'none'
          })
          that.setData({
            code:res.data
          })
        },
      })
      return that.data.code
    },
 })

效果展示

微信小程序获取剪切板的内容到输入框中_第1张图片

你可能感兴趣的:(#,微信小程序开发,微信小程序,小程序)