���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/luckymerchan/layout/default/node_modules/clipboard/demo/ |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>target-input-number</title> <meta name="viewport" content="width=device-width, initial-scale=1" /> </head> <body> <!-- 1. Define some markup --> <input id="foo" type="number" value="0" /> <button class="btn" data-clipboard-action="copy" data-clipboard-target="#foo" > Copy </button> <!-- 2. Include library --> <script src="../dist/clipboard.min.js"></script> <!-- 3. Instantiate clipboard --> <script> var clipboard = new ClipboardJS('.btn'); clipboard.on('success', function (e) { console.info('Action:', e.action); console.info('Text:', e.text); console.info('Trigger:', e.trigger); }); clipboard.on('error', function (e) { console.log(e); }); </script> </body> </html>