uniapp 兼容H5復制文本功能,親測可用


封裝copyText函數,具體如下:

copyText(val){
    let result
    // #ifndef H5
    uni.setClipboardData({
      data: val,
      success() {
        result = true
      },
      fail() {        
        result = false        
      }
    });
    // #endif
    
    // #ifdef H5 
      let textarea = document.createElement("textarea")
      textarea.value = val
      textarea.readOnly = "readOnly"
      document.body.appendChild(textarea)
      textarea.select() // 選中文本內容
      textarea.setSelectionRange(0, val.length) 
      result = document.execCommand("copy") 
      textarea.remove()    
    // #endif
      return result
  },

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM