简体   繁体   中英

ZeroClipBoard - copy text to clipboard

I want to copy string into clipboard on a function call or page load. Please see below code

<html>
<body>
        <script type="text/javascript" src="ZeroClipboard.js"></script>

        <div id="d_clip_button" style="border:1px solid black; padding:20px;">Copy To Clipboard</div>

        <script language="JavaScript">
            var clip = new ZeroClipboard.Client();
            var myTextToCopy = "Hi, this is the text to copy!";
            clip.setText( myTextToCopy );
            clip.glue( 'd_clip_button' );
        </script>
</body>
</html>

Copy text on button click is working fine. But i dont have any button in my project .I want to copy text inside a JS function. Please help me.

Thanks in advance Manu v nath

似乎这是不可能的,因为由于安全风险,Java脚本无法触发Flash事件。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM