すべてのブラウザに対応するjsコピープラグインZero
1105 ワード
キーワード:ゼロclipboard
github page:https://github.com/zeroclipboard/zeroclipboard
ここには三つのプラグインが必要です.それぞれ:
jquery.js
Zero Clip board.js
Zero Clip board.swf
万事順調をお祈りします.
github page:https://github.com/zeroclipboard/zeroclipboard
ここには三つのプラグインが必要です.それぞれ:
jquery.js
Zero Clip board.js
Zero Clip board.swf
万事順調をお祈りします.
<meta charset="utf-8" />
<button id="d_clip_button" data-clipboard-target="fe_text" > </button>
<input id="fe_text" value="Testing text." />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="ZeroClipboard.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
ZeroClipboard.setDefaults({
moviePath: "ZeroClipboard.swf"
});
var clip = new ZeroClipboard($("#d_clip_button"));
clip.on("load", function(client) {
console.log("ZeroClipboard.");
client.on("complete", function(client, args) {
console.log(" :" + args.text);
});
});
});
</script>