网页:复制到剪贴板(自定义..)

发布于 2024-09-03 06:41:35 字数 224 浏览 5 评论 0原文

我知道将文本复制到剪贴板的最好、最简单的方法是使用 Flash,它既跨浏览器又简单,这对我来说很好!我遇到过这个很棒的插件,名为 clippy 但问题是你必须将图像或对象嵌入到页面。

我想要一个链接,单击该链接即可进行复制。有什么想法吗? :-)

谢谢!

I know the best and easiest way to copy text to a clipboard that is both cross browser and simple is to use Flash, which is fine with me! I have come across this awesome plugin called clippy but the problem is you have to embed the image or object onto the page.

I wanted to have a link that when clicked would do the copying. Any ideas? :-)

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿! 2024-09-10 06:41:35

使用 zeroclipboard 库,您可以使用任何块级元素作为剪贴板按钮。这是可行的,因为 zeroclipboard 将不可见的 Flash 影片浮动在指定的 HTML 块级元素之上

如果您想单击链接来复制到剪贴板,请尝试以下操作:

<div id="d_clip_container" style="position:relative">
   <div id="d_clip_button"><a href="#">Copy to Clipboard</a></div>
</div>

以及稍后:

<script language="text/javascript">
clip.glue( 'd_clip_button', 'd_clip_container' );
</script>

请注意,此处可以省略 a 标记,因为剪贴板按钮浮动在包含的 div 上,而不是链接本身。

Using the zeroclipboard library, you can use any blocklevel element as your clipboard button. This works because zeroclipboard floats an invisible flash movie above the specified HTML blocklevel element.

If you want to have a link clicked as to copy to clipboard, try something like the following:

<div id="d_clip_container" style="position:relative">
   <div id="d_clip_button"><a href="#">Copy to Clipboard</a></div>
</div>

And later:

<script language="text/javascript">
clip.glue( 'd_clip_button', 'd_clip_container' );
</script>

Note that the a tag could be omitted here because the clipboard button is floating over the containing div, not the link itself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文