ZeroClipBoard - 将文本复制到剪贴板

问题描述:

Hi all,
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

http://www.c-sharpcorner.com/UploadFile/mahesh/WorkingwithSystemClipboard12032005043903AM/WorkingwithSystemClipboard.aspx [ ^ ]



通过这个..这将帮助你来自班加罗尔的Aatif Ali来支付


http://www.c-sharpcorner.com/UploadFile/mahesh/WorkingwithSystemClipboard12032005043903AM/WorkingwithSystemClipboard.aspx[^]

go through this..this will help you

by Aatif Ali from Bangalore


剪贴板将只会根据按钮点击工作。感谢所有人检查我的帖子
Clipboard will will only work based on button click.Thanks to all for checking my post