這次帶給大家navigator.clipboard瀏覽器怎麼製作原生剪貼板,navigator.clipboard瀏覽器製作原生剪貼簿的注意事項有哪些,以下就是實戰案例,一起來看一下。
navigator.clipboard.writeText('Linr Text to be copied') .then(() => { console.log('Text copied to clipboard'); }) .catch(err => { // This can happen if the user denies clipboard permissions: console.error('Could not copy text: ', err); });
navigator.clipboard.readText() .then(text => { console.log('Pasted content: ', text); }) .catch(err => { console.error('Failed to read clipboard contents: ', err); });
document.addEventListener('paste', event => { event.preventDefault(); navigator.clipboard.getText().then(text => { console.log('Pasted text: ', text); }); });
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#react-native flatlist上拉加載onEndReached頻繁觸發怎麼解決
以上是navigator.clipboard瀏覽器怎麼製作原生剪貼簿的詳細內容。更多資訊請關注PHP中文網其他相關文章!