Copy to Clipboard with javascript for phonegap

前端 未结 2 669
臣服心动
臣服心动 2021-01-02 09:50

i am developing an app using javascript/mobile-jquery interface for the phonegap platform. Now I have seen so many examples on the web trying to copy to clipboard and unfor

2条回答
  •  再見小時候
    2021-01-02 10:16

    e-sushi's instructions didn’t quite work for me.

    To get the plugin running I used the following command:

    phonegap local plugin add https://github.com/VersoSolutions/CordovaClipboard
    

    and then adding the following command in JS:

    cordova.plugins.clipboard.copy(text);
    

提交回复
热议问题