6

当客户端单击Button时,我正在尝试使用Zero * Clipboard * 将文本从Textbox复制到剪贴板。我尝试了很多天,但没有成功完成这项工作。

在场景中,我有一个文本框来呈现来自数据库的数据。我有一个Button,当客户端单击时应该复制Textbox的文本。我试过跟随但它不起作用。

一些帮助将不胜感激。

 <script type="text/javascript" src="/Scripts/ZeroClipboard.js"></script>
    <script type="text/javascript">
        ZeroClipboard.setMoviePath('/Scripts/ZeroClipboard.swf');
    </script>



<script>
    function test() {

        ZeroClipboard.setMoviePath('/Scripts/ZeroClipboard.swf');
        //create client
        var clip = new ZeroClipboard.Client();

        //event
        clip.addEventListener('mousedown', function () {
            clip.setText(document.getElementById('TextBox2').value);

        });
        clip.addEventListener('complete', function (client, text) {
            alert('copied: ' + text);

        });
        //glue it to the button
        clip.glue('d_clip_button');

    }
</script>

<asp:TextBox ID="TextBox2" runat="server" BorderStyle="None"  Enabled="False" Font-Size="Medium" ForeColor="Black" Width="213px"></asp:TextBox>
            &nbsp;<asp:Button ID="d_clip_button" runat="server" Text="Copy" OnClientClick="javascript:test();" />
4

3 回答 3

4
<html>
<body>
<button id="copy-button" data-clipboard-text="Copy Me!" title="Click to copy me.">
Copy to Clipboard</button>
<script src="ZeroClipboard.js"></script>
<script src="main.js"></script>
</body>
</html>

//In Main.js file
// main.js
var clip = new ZeroClipboard( document.getElementById("copy-button"), {
moviePath: "/path/to/ZeroClipboard.swf"
} );

clip.on( 'load', function(client) {
// alert( "movie is loaded" );
} );

clip.on( 'complete', function(client, args) {
this.style.display = 'none'; // "this" is the element that was clicked
alert("Copied text to clipboard: " + args.text );
} );

clip.on( 'mouseover', function(client) {
// alert("mouse over");
} );

clip.on( 'mouseout', function(client) {
// alert("mouse out");
} );

clip.on( 'mousedown', function(client) {

// alert("mouse down");
} );

clip.on( 'mouseup', function(client) {
// alert("mouse up");
} );
于 2013-07-10T06:26:40.507 回答
3
<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>
于 2013-07-04T04:47:08.653 回答
2

首先,您试图通过错误的 id 选择元素。由于您使用网络表单,因此正确的方法是:

getElementById('<%=TextBox2.ClientID%>')

此外,遵循不显眼的 js 风格的良好解决方案可能如下所示:

$().ready(function () {
    ZeroClipboard.setDefaults({ moviePath: "/Scripts/ZeroClipboard.swf" });

    var clip = new ZeroClipboard(document.getElementById('YourButtonId')); //or '<%=YourButton.ClientID%>' if you use asp.net button

    clip.on('complete', function (client, args) {
        alert("Copied text to clipboard: " + args.text);
    });
});

此外,您的按钮应该具有 data 属性data-clipboard-target(实际上有三种方法可以做到)。将 data-attributes 设置为 webforms 控件很棘手,因此您可能希望避免在此处使用 asp.net 按钮并执行以下操作:

<input type="button" value="clickme" id="YourButtonId" data-clipboard-target="<%=TextBox2.ClientID %>"/>

享受!

于 2013-07-11T14:12:14.977 回答