38 lines
		
	
	
		
			895 B
		
	
	
	
		
			HTML
		
	
	
	
		
		
			
		
	
	
			38 lines
		
	
	
		
			895 B
		
	
	
	
		
			HTML
		
	
	
	
|  | <!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> |