Mobile cannot replicate: Use Clipboard.js encounter a small problem directly to see the following code: on the Mobile Access, click, can copy normally.
<HTML><Head> <Metahttp-equiv= "Content-type"content= "text/html; charset=utf-8"> <Metaname= "Viewport"content= "Width=device-width, initial-scale=1, User-scalable=no, Minimal-ui"/><Body><Divclass= "BTN"style= "Cursor:pointer;">copy123456</Div><Scriptsrc= "Clipboard.min.js"></Script><Scriptsrc= "Jquery.min.js"></Script><Script> varClipboard= NewClipboard ('. BTN', {text:function () { return $(". BTN"). html (); } }); Clipboard.on ('Success', function(e) {alert ("Replication succeeded"); }); Clipboard.on ('Error', function(e) {alert ("Replication Failed"); });</Script></Body></HTML>View Code
Problem: Remove the style cursor:pointer , click on the mobile side does not respond, copy not (on the PC side does not have this problem)
(If you use a button instead of a div above, then this problem does not exist)
Specific reasons, no energy to explore, first tell those who may encounter this problem, but have not found friends, do not tangle.
The mobile cannot replicate: a small problem encountered using Clipboard.js