You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
474 B
15 lines
474 B
<html>
|
|
<body>
|
|
<button id="copy-button" data-clipboard-text="Copy Me!" title="Click to copy me.">Copy to Clipboard</button>
|
|
<script src="ZeroClipboard.min.js"></script>
|
|
<script type="text/javascript">
|
|
// main.js
|
|
var client = new ZeroClipboard( document.getElementById("copy-button") );
|
|
client.on( "ready", function( readyEvent ) {
|
|
client.on( "aftercopy", function( event ) {
|
|
alert("复制功能");
|
|
} );
|
|
} );
|
|
</script>
|
|
</body>
|
|
</html>
|