Zeroclipboard多个元素

时间:2010-01-28 08:49:14

标签: jquery click popupwindow zeroclipboard

我在代码中创建多个Zeroclipboard实例化时遇到问题,每个实例化在调用后都会启动一个弹出窗口。

<a class="xxx" href="popup.url.php" ><span >FRSDE3RD</a>
<a class="xxx" href="popup.url2.php" ><span >FRSDE3RD2</a>
<a class="xxx" href="popup.url3.php" ><span >FRSDE3RD3</a>
$(document).ready(function(){
    ZeroClipboard.setMoviePath( 'path/to/swf/ZeroClipboard.swf' );
    // setup single ZeroClipboard object for all our elements
    clip = new ZeroClipboard.Client();
    clip.setHandCursor( true );

    // assign a common mouseover function for all elements using jQuery
    $('a.xxx').mouseover( function() {
        // set the clip text to our innerHTML
        var url = $(this).attr("href");
        var code = $(this).children('span').html();
        clip.setText( $(this).children('span').html() );//this.innerHTML );

        clip.glue(this);
        clip.addEventListener('onMouseDown', function(){
            clip.reposition(this);
            clip.setText( code );
        });

        clip.addEventListener('onComplete', function(){ 
            clip.reposition(this);
            popUp(url);
        }); 


    });
});

function popUp(URL)
{
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=1024,height=768,left = 328,top = 141');");
}

我成功生成了复制到剪贴板功能,但是如果我使用onMouseUp,onComplete事件来触发弹出功能,它会像4-5弹出窗口一样触发或根本不触发。

P.S。我尝试从How to load an Ajax response into clipboard using jQuery and ZeroClipboard?调整解决方案而不是ajax调用只需复制到剪贴板,然后完成午餐弹出...正如我所说的那样对我不起作用。

启用flashblocker后我还想到的是,每次翻转CODE标签时,都会在同一位置创建一个新的闪存,这可能就是为什么我单击时会弹出3-4个弹出窗口它。如果我翻滚更多,会有更多弹出窗口出现。有没有办法阻止闪光灯在相同位置创建或在推出时销毁?

3 个答案:

答案 0 :(得分:14)

经过更多研究后,我得到了解决这个问题的方法:

$("a.xxx").each(function() {
  //Create a new clipboard client
  var clip = new ZeroClipboard.Client();
  clip.setHandCursor( true );

  //Glue the clipboard client to the last td in each row
  clip.glue(this);

  var url = $(this).attr("href");
  //Grab the text from the parent row of the icon
  var code = $(this).children('span').html();    
  clip.setText(code);

  //Add a complete event to let the user know the text was copied
  clip.addEventListener('complete', function(client, text) {
    //alert("Copied text to clipboard:\n" + text);
    popUp(url);
  });
});

这是解决方案,如果其他人都会遇到这个问题。

答案 1 :(得分:0)

尝试使用http://www.steamdev.com/zclip/它允许您直接访问jquery,并且可以在return语句中使用自己的逻辑。

包括jquery.zclip.js 下载并保存ZeroClipboard.swf

这是一个片段:

$(".class-to-copy").zclip({
    path: "assets/js/ZeroClipboard.swf",
    copy: function(){
        return $(this).attr("data-attribute-with-text-to-copy");
    }
});

确保更改swf的路径。

答案 2 :(得分:0)

Andrei C回答的是过时的。 请按以下步骤操作。

<a id="test1" class="test" href="#"  data-clipboard-text="1">111</a>
<a id="test2" class="test" href="#"  data-clipboard-text="2">111</a>
<a id="test3" class="test" href="#"  data-clipboard-text="3">111</a>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="dist1/ZeroClipboard.js"></script>
<script>
var client = new ZeroClipboard( );
client.clip($(".test"));

client.on( "ready", function( readyEvent ) {
  client.on( "aftercopy", function( event ) {
    alert("Copied text to clipboard: " + event.data["text/plain"] );
  } );
});

</script>