clipboard copy element
v1.3.0
Kopieren Sie den Element -Textinhalt oder die Eingabewerte in die Zwischenablage.
$ npm install --save @github/clipboard-copy-element
Importieren als ES -Module:
import '@github/clipboard-copy-element'
Mit einem Skript -Tag:
< script type =" module " src =" ./node_modules/@github/clipboard-copy-element/dist/index.js " >
< clipboard-copy for =" blob-path " class =" btn btn-sm BtnGroup-item " >
Copy path
</ clipboard-copy >
< div id =" blob-path " > src/index.js </ div >
< clipboard-copy value =" src/index.js " > Copy </ clipboard-copy >
< clipboard-copy for =" blob-path " > Copy </ clipboard-copy >
< div id =" blob-path " > src/index.js </ div >
< clipboard-copy for =" blob-path " > Copy </ clipboard-copy >
< input id =" blob-path " value =" src/index.js " >
< clipboard-copy for =" blob-path " > Copy full URL </ clipboard-copy >
< a id =" blob-path " href =" /path/to#my-blob " > Link text will not be copied </ a >
Nach dem Kopieren in die Zwischenablage wird ein clipboard-copy
Ereignis aus dem Element <clipboard-copy>
entsandt:
document . addEventListener ( 'clipboard-copy' , function ( event ) {
const button = event . target
button . classList . add ( 'highlight' )
} )
Browser ohne native Unterstützung für benutzerdefinierte Elemente erfordern eine Polyfill.
npm install
npm test
Unter der MIT -Lizenz verteilt. Weitere Informationen finden Sie in Lizenz.