ZeroClipboard - 检查它是否已加载

时间:2014-10-20 21:37:44

标签: javascript jquery zeroclipboard

这里真的很简单,我在文档中找不到它,希望有人能指出我正确的方向。

https://github.com/zeroclipboard/zeroclipboard

在ZeroClipboard中加载SWF时会有一个回调,有没有办法可以检测到它是否还没有加载?

以下是它加载时的当前工作方式:

client.on( "ready", function( readyEvent ) {
  // alert( "ZeroClipboard SWF is ready!" );

  client.on( "aftercopy", function( event ) {
    // `this` === `client`
    // `event.target` === the element that was clicked
    event.target.style.display = "none";
    alert("Copied text to clipboard: " + event.data["text/plain"] );
  } );
} );

1 个答案:

答案 0 :(得分:1)

只需检查窗口中是否存在ZeroClipboard对象

window.onload = function() {
    if (!('ZeroClipboard' in window)) {
        //your code
    }
}